.hero-team-cve,
.cve-page {
  --cve-accent: #66ffe6;
  --cve-accent-rgb: 102, 255, 230;
  --cve-indigo: #7185ff;
  --cve-copy: #d5e2f3;
  --cve-muted: #91a5bd;
  --cve-line: rgba(176, 202, 235, 0.13);
  --cve-panel: #0a1321;
}

.hero-team-cve {
  position: relative;
  padding: 10px 0 0;
  overflow: hidden;
  background:
    radial-gradient(
      680px 350px at 88% 5%,
      rgba(83, 109, 254, 0.13),
      transparent 72%
    ),
    radial-gradient(
      620px 300px at 5% 0%,
      rgba(0, 214, 200, 0.075),
      transparent 72%
    ),
    linear-gradient(145deg, #09101b, #0b1422 58%, #0c1726);
}

.hero-team-cve::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(144, 174, 215, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144, 174, 215, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 96%);
  mask-image: linear-gradient(to bottom, #000, transparent 96%);
}

.hero-team-cve::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -230px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(var(--cve-accent-rgb), 0.055);
  border-radius: 50%;
  box-shadow:
    0 0 0 68px rgba(83, 109, 254, 0.014),
    0 0 0 136px rgba(var(--cve-accent-rgb), 0.008);
  pointer-events: none;
}

.cve-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 62px;
}

.cve-breadcrumb {
  margin-bottom: 38px;
}

.cve-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cve-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #7f93ab;
  font-size: 0.76rem;
  font-weight: 650;
}

.cve-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.24);
}

.cve-breadcrumb a {
  color: #c4d5e9;
  text-decoration: none;
}

.cve-breadcrumb a:hover {
  color: var(--cve-accent);
}

.cve-breadcrumb li[aria-current="page"] {
  max-width: min(42vw, 300px);
  overflow: hidden;
  color: #dce8f7;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cve-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.cve-kicker,
.cve-section-kicker,
.cve-side-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8df5e7;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cve-kicker::before {
  content: "";
  width: 29px;
  height: 1px;
  background: currentColor;
}

.cve-kicker i {
  font-size: 0.95rem;
}

.cve-hero-copy h1 {
  margin: 15px 0 0;
  color: #f2f7ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.cve-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 21px;
  color: #91a5bd;
  font-size: 0.75rem;
  font-weight: 680;
}

.cve-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cve-hero-meta i {
  color: #96a8ff;
  font-size: 0.95rem;
}

.cve-hero-meta a {
  color: #cddcef;
  text-decoration: none;
}

.cve-hero-meta a:hover {
  color: var(--cve-accent);
}

.cve-score {
  --score-color: #8fa4bc;
  --score-rgb: 143, 164, 188;
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 178px;
  padding: 23px 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--score-rgb), 0.28);
  border-radius: 19px;
  background:
    radial-gradient(
      210px 135px at 50% 0%,
      rgba(var(--score-rgb), 0.14),
      transparent 70%
    ),
    rgba(6, 15, 26, 0.68);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.25),
    inset 0 0 32px rgba(var(--score-rgb), 0.025);
}

.cve-score::before {
  content: "";
  position: absolute;
  top: 0;
  right: 19px;
  left: 19px;
  height: 2px;
  background: var(--score-color);
  box-shadow: 0 0 17px rgba(var(--score-rgb), 0.38);
}

.cve-score--critical {
  --score-color: #ff657d;
  --score-rgb: 255, 101, 125;
}

.cve-score--high {
  --score-color: #ff9a61;
  --score-rgb: 255, 154, 97;
}

.cve-score--medium {
  --score-color: #f4c75f;
  --score-rgb: 244, 199, 95;
}

.cve-score--low {
  --score-color: #62deb3;
  --score-rgb: 98, 222, 179;
}

.cve-score-label {
  color: #7f93aa;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cve-score > strong {
  align-self: end;
  color: var(--score-color);
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 4rem;
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-shadow: 0 0 28px rgba(var(--score-rgb), 0.2);
}

.cve-score-severity {
  align-self: start;
  margin-top: 5px;
  padding: 5px 9px;
  border: 1px solid rgba(var(--score-rgb), 0.25);
  border-radius: 999px;
  color: var(--score-color);
  background: rgba(var(--score-rgb), 0.075);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cve-page {
  position: relative;
  padding: clamp(62px, 8vw, 96px) 0 92px;
  overflow: hidden;
  background:
    radial-gradient(
      700px 380px at 100% 0%,
      rgba(83, 109, 254, 0.05),
      transparent 72%
    ),
    #09111e;
}

.cve-container {
  max-width: 1160px;
}

.cve-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: clamp(40px, 6vw, 70px);
  align-items: start;
}

.cve-article {
  min-width: 0;
}

.cve-section {
  padding: 0 0 39px;
  border-bottom: 1px solid var(--cve-line);
}

.cve-section + .cve-section {
  padding-top: 39px;
}

.cve-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cve-section h2,
.cve-side-section h2 {
  color: #eef5ff;
  font-family: "Inter Tight", system-ui, sans-serif;
}

.cve-section h2 {
  margin: 9px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 540;
  letter-spacing: -0.028em;
  line-height: 1.18;
}

.cve-overview {
  position: relative;
  padding: 0 0 39px 19px;
}

.cve-overview::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 42px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(var(--cve-accent), var(--cve-indigo));
}

.cve-section > p {
  margin: 18px 0 0;
  color: var(--cve-copy);
  font-size: 0.98rem;
  line-height: 1.82;
}

.cve-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.cve-severity-badge,
.cve-section-count {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid var(--cve-line);
  border-radius: 8px;
  color: #aebed2;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.64rem;
  font-weight: 820;
  white-space: nowrap;
}

.cve-severity-badge--critical {
  border-color: rgba(255, 107, 130, 0.27);
  color: #ffadbb;
  background: rgba(255, 107, 130, 0.055);
}

.cve-severity-badge--high {
  border-color: rgba(255, 155, 106, 0.27);
  color: #ffc09f;
  background: rgba(255, 155, 106, 0.055);
}

.cve-severity-badge--medium {
  border-color: rgba(245, 197, 102, 0.27);
  color: #f9dc9b;
  background: rgba(245, 197, 102, 0.055);
}

.cve-severity-badge--low {
  border-color: rgba(105, 223, 183, 0.27);
  color: #a4f1d7;
  background: rgba(105, 223, 183, 0.055);
}

.cve-vector {
  display: grid;
  gap: 8px;
  margin-top: 21px;
  padding: 15px 16px;
  border: 1px solid rgba(var(--cve-accent-rgb), 0.13);
  border-radius: 12px;
  background: rgba(var(--cve-accent-rgb), 0.025);
}

.cve-vector > span {
  color: #7489a2;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cve-vector code {
  overflow-wrap: anywhere;
  color: #bafdf3;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.55;
}

.cve-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0 0;
}

.cve-metric-grid > div {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--cve-line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.015);
}

.cve-metric-grid dt {
  color: #7388a1;
  font-size: 0.59rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cve-metric-grid dd {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
  color: #dce8f6;
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.4;
}

.cve-weakness-list {
  display: grid;
  gap: 9px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.cve-weakness-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 11px 13px;
  border-left: 1px solid rgba(var(--cve-accent-rgb), 0.3);
  color: #bdccdf;
  background: linear-gradient(
    90deg,
    rgba(var(--cve-accent-rgb), 0.035),
    transparent
  );
  font-size: 0.76rem;
  line-height: 1.55;
}

.cve-weakness-list i {
  color: #8ef4e5;
  font-size: 0.95rem;
}

.cve-weakness-list li > span {
  display: grid;
  gap: 4px;
}

.cve-weakness-list strong {
  color: #cbd9ea;
  font-size: 0.76rem;
  font-weight: 690;
  line-height: 1.55;
}

.cve-weakness-list code {
  width: fit-content;
  color: #83eddd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.63rem;
  font-weight: 760;
}

.cve-configuration-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.cve-configuration {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid var(--cve-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.cve-configuration-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.cve-configuration-head > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.61rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cve-configuration-head .is-vulnerable {
  color: #ffb29f;
}

.cve-configuration-head .is-context {
  color: #95a9c1;
}

.cve-configuration > code {
  display: block;
  overflow-wrap: anywhere;
  color: #c5d5e8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  line-height: 1.6;
}

.cve-version-range {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}

.cve-version-range span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 7px;
  color: #8fa3bb;
  background: rgba(255, 255, 255, 0.028);
  font-size: 0.61rem;
  font-weight: 710;
}

.cve-reference-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: cve-reference;
}

.cve-configuration-list.is-scrollable,
.cve-reference-list.is-scrollable {
  max-height: 620px;
  padding-right: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(var(--cve-accent-rgb), 0.28) rgba(255, 255, 255, 0.025);
  scrollbar-width: thin;
}

.cve-reference-list li {
  min-width: 0;
  counter-increment: cve-reference;
}

.cve-reference-list a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid var(--cve-line);
  border-radius: 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.012);
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.cve-reference-list a:hover {
  border-color: rgba(var(--cve-accent-rgb), 0.23);
  background: rgba(var(--cve-accent-rgb), 0.022);
  transform: translateY(-1px);
}

.cve-reference-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--cve-accent-rgb), 0.15);
  border-radius: 9px;
  color: #91f5e7;
  background: rgba(var(--cve-accent-rgb), 0.035);
}

.cve-reference-copy {
  display: grid;
  min-width: 0;
}

.cve-reference-copy strong {
  overflow: hidden;
  color: #dce8f6;
  font-size: 0.73rem;
  font-weight: 790;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cve-reference-copy > small {
  margin-top: 4px;
  overflow: hidden;
  color: #7388a0;
  font-size: 0.61rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cve-reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

.cve-reference-tag {
  width: fit-content;
  padding: 3px 7px;
  border: 1px solid rgba(176, 202, 235, 0.11);
  border-radius: 999px;
  color: #9eb1c8;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.56rem;
  font-weight: 740;
  line-height: 1.35;
}

.cve-reference-tag--exploit {
  border-color: rgba(255, 101, 125, 0.22);
  color: #ff9cac;
  background: rgba(255, 101, 125, 0.065);
}

.cve-reference-tag--advisory {
  border-color: rgba(133, 153, 255, 0.23);
  color: #afbaff;
  background: rgba(83, 109, 254, 0.07);
}

.cve-reference-tag--remediation {
  border-color: rgba(98, 222, 179, 0.21);
  color: #8deac9;
  background: rgba(98, 222, 179, 0.06);
}

.cve-reference-arrow {
  color: #8296ae;
}

.cve-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 15px;
  min-width: 0;
}

.cve-side-section {
  border: 1px solid var(--cve-line);
  border-radius: 15px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.027),
      rgba(255, 255, 255, 0.008)
    ),
    var(--cve-panel);
}

.cve-side-section {
  padding: 20px;
}

.cve-side-section h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 590;
}

.cve-detail-list {
  display: grid;
  gap: 0;
  margin: 17px 0 0;
}

.cve-detail-list > div {
  display: grid;
  gap: 4px;
  padding: 11px 0;
  border-top: 1px solid rgba(176, 202, 235, 0.09);
}

.cve-detail-list dt {
  color: #73879f;
  font-size: 0.59rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cve-detail-list dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #cbd9e9;
  font-size: 0.71rem;
  font-weight: 690;
  line-height: 1.5;
}

.cve-breadcrumb a:focus-visible,
.cve-hero-meta a:focus-visible,
.cve-reference-list a:focus-visible {
  outline: 2px solid var(--cve-accent);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .cve-layout {
    grid-template-columns: 1fr;
  }

  .cve-sidebar {
    position: static;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cve-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cve-score {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    gap: 7px 15px;
    align-items: center;
    min-height: 0;
    padding: 19px;
  }

  .cve-score-label {
    grid-column: 1 / -1;
  }

  .cve-score > strong {
    align-self: center;
    font-size: 2.8rem;
  }

  .cve-score-severity {
    align-self: center;
    margin-top: 0;
  }

  .cve-score::before {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: 0;
    width: 2px;
    height: auto;
  }

  .cve-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .cve-hero-inner {
    padding-bottom: 48px;
  }

  .cve-breadcrumb li[aria-current="page"] {
    display: none;
  }

  .cve-breadcrumb li:last-child::before {
    display: none;
  }

  .cve-hero-copy h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .cve-hero-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cve-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .cve-sidebar {
    grid-template-columns: 1fr;
  }

  .cve-reference-list a {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .cve-reference-arrow {
    display: none;
  }
}

@media (max-width: 420px) {
  .cve-score {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cve-metric-grid {
    grid-template-columns: 1fr;
  }

  .cve-overview {
    padding-left: 15px;
  }

  .cve-configuration {
    padding: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cve-reference-list a {
    transition: none;
  }
}