.credential-stuffing-2,
.credential-stuffing-2 *,
.credential-stuffing-2 *::before,
.credential-stuffing-2 *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.credential-stuffing-2 {
  --bg: #06040e;
  --surface: #2a1647;
  --card: #23133a;
  --card2: #1f1232;
  --border: #3a1c63;
  --border2: #5e309d;
  --violet: #c77dff;
  --violet2: #9d4edd;
  --violet3: #e0aaff;
  --mint: #06d6a0;
  --mint2: #04a87e;
  --red: #ef233c;
  --red2: #ff4d63;
  --amber: #7209b7;
  --steel: #f65bf6;
  --steel2: #e8f0ff;
  --white: #f0ecff;
  --text: #d8d0f0;
  --text-mid: #b1abc5;
  --text-dim: #5c576d;

  background: #191127;
  color: var(--text);
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  word-wrap: break-word;
  height: 100vh;
}

/* Diagonal stripe texture */
.credential-stuffing-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-55deg, transparent 0px, transparent 48px,
      rgba(157, 78, 221, .018) 48px, rgba(157, 78, 221, .018) 49px);
  pointer-events: none;
  z-index: 0;
}

/* Atmospheric glow */
.credential-stuffing-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(199, 125, 255, .07) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 90%, rgba(6, 214, 160, .04) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}

/* ── PROGRESS BAR ── */
#prog {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet2), var(--violet), var(--violet3));
  box-shadow: 0 0 14px rgba(199, 125, 255, .6), 0 0 28px rgba(199, 125, 255, .2);
  transition: width .4s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
}

.credential-stuffing-2 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* ── BREACH BANNER ── */
.credential-stuffing-2 .breach-banner {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: stretch;
}

.credential-stuffing-2 .bb-label {
  display: flex;
  align-items: center;
  padding: 0 18px 0 18px;
  padding-right: 28px;
  background: var(--violet2);
  
  font-size: 15px;
  font-weight: 600;
  
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.credential-stuffing-2 .bb-scroll {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.credential-stuffing-2 .bb-scroll::before,
.credential-stuffing-2 .bb-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 1;
}

.credential-stuffing-2 .bb-scroll::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.credential-stuffing-2 .bb-scroll::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent);
}

.credential-stuffing-2 .bb-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: cs-scroll-breach 30s linear infinite;
  
  font-size: 10.5px;
}

@keyframes cs-scroll-breach {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.credential-stuffing-2 .bb-item {
  padding: 0 24px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
}

.credential-stuffing-2 .bb-item .bi-src {
  color: var(--text-mid);
  
}

.credential-stuffing-2 .bb-item .bi-count {
  color: var(--violet);
  font-weight: 700;
}

.credential-stuffing-2 .bb-item .bi-sep {
  color: var(--text-dim);
}

.credential-stuffing-2 .bb-item.live .bi-count {
  color: var(--red2);
  animation: cs-count-pulse 1.2s ease-in-out infinite;
}

@keyframes cs-count-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

/* ── HEADER ── */
.credential-stuffing-2 header {
  padding: 52px 0 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.credential-stuffing-2 .cred-rain {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  overflow: hidden;
  opacity: .06;
  pointer-events: none;
  
  font-size: 11px;
  line-height: 1.9;
  color: var(--violet3);
}

.credential-stuffing-2 .rain-col {
  position: absolute;
  top: -100%;
  display: flex;
  flex-direction: column;
  animation: cs-rain-fall linear infinite;
}

.credential-stuffing-2 .rain-col:nth-child(1) {
  left: 10px;
  animation-duration: 8s;
  animation-delay: 0s;
}

.credential-stuffing-2 .rain-col:nth-child(2) {
  left: 85px;
  animation-duration: 11s;
  animation-delay: -3s;
}

.credential-stuffing-2 .rain-col:nth-child(3) {
  left: 160px;
  animation-duration: 9s;
  animation-delay: -1s;
}

.credential-stuffing-2 .rain-col:nth-child(4) {
  left: 240px;
  animation-duration: 13s;
  animation-delay: -5s;
}

.credential-stuffing-2 .rain-col:nth-child(5) {
  left: 320px;
  animation-duration: 10s;
  animation-delay: -2s;
}

@keyframes cs-rain-fall {
  from {
    top: -100%
  }

  to {
    top: 110%
  }
}

.credential-stuffing-2 .h-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  
  font-size: 10px;
  
  color: var(--violet2);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.credential-stuffing-2 .ey-tag {
  background: rgba(157, 78, 221, .15);
  border: 1px solid var(--violet2);
  padding: 2px 10px;
  font-size: 9px;
  color: var(--violet);
}

.credential-stuffing-2 h1 {
  
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 700;
  line-height: .88;
  
  color: var(--white);
}

.credential-stuffing-2 h1 .accent {
  display: block;
  color: var(--violet);
  text-shadow: 0 0 40px rgba(199, 125, 255, .45), 0 0 80px rgba(199, 125, 255, .15);
}

.credential-stuffing-2 h1 .underline-bar {
  display: block;
  height: 4px;
  margin-top: 10px;
  width: 100%;
  background: linear-gradient(90deg, var(--violet), var(--violet2), transparent);
  animation: cs-bar-pulse 3s ease-in-out infinite;
}

@keyframes cs-bar-pulse {

  0%,
  100% {
    opacity: .7
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 20px var(--violet2)
  }
}

.credential-stuffing-2 h1 .sub-line {
  display: block;
  
  font-size: .28em;
  font-weight: 400;
  
  color: var(--text-mid);
  margin-top: 14px;
}

.credential-stuffing-2 .h-desc {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 640px;
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.8;
}

.credential-stuffing-2 .scale-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 8px 18px;
  background: #23133a;
  border: 1px solid #3a1c63;
  
  font-size: 10px;
  color: var(--red2);
  
}

.credential-stuffing-2 .scale-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red2);
  box-shadow: 0 0 8px var(--red2);
  animation: cs-count-pulse 1s step-end infinite;
}

/* ── STATS ── */
.credential-stuffing-2 .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}

.credential-stuffing-2 .s-cell {
  background: var(--card);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}

.credential-stuffing-2 .s-cell:hover {
  background: var(--card2);
}

.credential-stuffing-2 .s-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.credential-stuffing-2 .s-cell:nth-child(1)::after {
  background: var(--violet);
}

.credential-stuffing-2 .s-cell:nth-child(2)::after {
  background: var(--red2);
}

.credential-stuffing-2 .s-cell:nth-child(3)::after {
  background: var(--mint);
}

.credential-stuffing-2 .s-cell:nth-child(4)::after {
  background: var(--amber);
}

.credential-stuffing-2 .sl {
  
  font-size: 9px;
  
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.credential-stuffing-2 .sv {
  
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}

.credential-stuffing-2 .s-cell:nth-child(1) .sv {
  color: var(--violet);
}

.credential-stuffing-2 .s-cell:nth-child(2) .sv {
  color: var(--red2);
}

.credential-stuffing-2 .s-cell:nth-child(3) .sv {
  color: var(--mint);
}

.credential-stuffing-2 .s-cell:nth-child(4) .sv {
  color: var(--amber);
}

.credential-stuffing-2 .sd {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.5;
}

/* ── SECTION HEADER ── */
.credential-stuffing-2 .sec {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 52px;
  margin-bottom: 26px;
}

.credential-stuffing-2 .sn {
  
  font-size: 10px;
  color: var(--violet);
  opacity: .5;
}

.credential-stuffing-2 .st {
  
  font-size: 20px;
  font-weight: 600;
  
  color: var(--white);
  text-transform: uppercase;
}

.credential-stuffing-2 .sr {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border2) 0%, transparent 100%);
}

/* ── STUFFING CONSOLE ── */
.credential-stuffing-2 .stuffing-console {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 52px;
}

.credential-stuffing-2 .sc-left {
  background: var(--card);
  padding: 28px;
}

.credential-stuffing-2 .sc-right {
  background: var(--surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.credential-stuffing-2 .sc-title {
  
  font-size: 20px;
  font-weight: 600;
  
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.credential-stuffing-2 .sc-sub {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.6;
}

.credential-stuffing-2 .cred-list-wrap {
  background: #040210;
  border: 1px solid var(--border);
  height: 240px;
  overflow: hidden;
  position: relative;
}

.credential-stuffing-2 .cred-list-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, #040210);
  z-index: 1;
  pointer-events: none;
}

.credential-stuffing-2 .cred-list-wrap::after {
  content: 'COMBO LIST';
  position: absolute;
  top: 8px;
  right: 10px;
  
  font-size: 8px;
  
  color: var(--text-dim);
  z-index: 1;
}

.credential-stuffing-2 .cred-list {
  padding: 10px 14px;
  animation: cs-list-scroll 18s linear infinite;
  
  font-size: 11px;
  line-height: 2.1;
}

@keyframes cs-list-scroll {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-60%)
  }
}

.credential-stuffing-2 .cred-row {
  display: flex;
  gap: 8px;
}

.credential-stuffing-2 .cr-user {
  color: var(--steel2);
  min-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.credential-stuffing-2 .cr-pass {
  color: var(--violet3);
}

.credential-stuffing-2 .cr-sep {
  color: var(--text-dim);
}

.credential-stuffing-2 .counter-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 14px;
}

.credential-stuffing-2 .ctr {
  background: var(--card2);
  padding: 14px 16px;
  text-align: center;
}

.credential-stuffing-2 .ctr-lbl {
  
  font-size: 9px;
  
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.credential-stuffing-2 .ctr-val {
  
  font-size: 26px;
  font-weight: 700;
  
}

.credential-stuffing-2 .ctr.tried .ctr-val {
  color: var(--violet3);
}

.credential-stuffing-2 .ctr.hit .ctr-val {
  color: var(--mint);
}

.credential-stuffing-2 .ctr.failed .ctr-val {
  color: var(--red2);
}

.credential-stuffing-2 .rate-bar-wrap {
  margin-top: 14px;
}

.credential-stuffing-2 .rb-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.credential-stuffing-2 .rb-label {
  
  font-size: 9px;
  
  color: var(--text-dim);
  text-transform: uppercase;
}

.credential-stuffing-2 .rb-val {
  
  font-size: 9px;
  color: var(--violet);
}

.credential-stuffing-2 .rate-bar {
  height: 8px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}

.credential-stuffing-2 .rate-fill {
  height: 100%;
  border-radius: 1px;
  animation: cs-rate-anim 2.5s ease-in-out infinite;
}

.credential-stuffing-2 .rate-fill.v {
  background: var(--violet);
  animation-delay: 0s;
}

.credential-stuffing-2 .rate-fill.m {
  background: var(--mint);
  animation-delay: .3s;
}

.credential-stuffing-2 .rate-fill.r {
  background: var(--red2);
  animation-delay: .6s;
}

@keyframes cs-rate-anim {
  0% {
    width: 85%
  }

  30% {
    width: 92%
  }

  60% {
    width: 78%
  }

  100% {
    width: 85%
  }
}

.credential-stuffing-2 .proxy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.credential-stuffing-2 .proxy-dot {
  background: #1f1232;
  border: 1px solid var(--border);
  padding: 8px 6px;
  text-align: center;
  
  font-size: 9px;
  transition: all .3s;
}

.credential-stuffing-2 .proxy-dot .pd-flag {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.credential-stuffing-2 .proxy-dot .pd-ip {
  color: var(--text-dim);
  font-size: 8px;
}

.credential-stuffing-2 .proxy-dot .pd-status {
  font-size: 7px;
  
  margin-top: 3px;
}

.credential-stuffing-2 .proxy-dot.active {
  border-color: var(--violet2);
  background: rgba(157, 78, 221, .1);
}

.credential-stuffing-2 .proxy-dot.active .pd-status {
  color: var(--violet);
}

.credential-stuffing-2 .proxy-dot.used {
  border-color: var(--border);
  opacity: .3;
}

.credential-stuffing-2 .proxy-dot.used .pd-status {
  color: var(--text-dim);
}

.credential-stuffing-2 .proxy-dot.fresh .pd-status {
  color: var(--mint);
}

/* ── PIPELINE ── */
.credential-stuffing-2 .pipeline {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px 28px;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}

.credential-stuffing-2 .pipeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
}

.credential-stuffing-2 .pipe-label {
  
  font-size: 9px;
  
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.credential-stuffing-2 .pipe-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.credential-stuffing-2 .pipe-step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px 16px;
  position: relative;
  transition: background .2s;
  cursor: default;
}

.credential-stuffing-2 .pipe-step:hover {
  background: var(--card2);
}

.credential-stuffing-2 .pipe-step+.pipe-step {
  border-left: none;
}

.credential-stuffing-2 .pipe-step::after {
  content: '▶';
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--violet2);
  z-index: 1;
  text-shadow: 0 0 8px rgba(157, 78, 221, .6);
}

.credential-stuffing-2 .pipe-step:last-child::after {
  display: none;
}

.credential-stuffing-2 .ps-num {
  
  font-size: 9px;
  
  color: var(--violet2);
  margin-bottom: 10px;
}

.credential-stuffing-2 .ps-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.credential-stuffing-2 .ps-title {
  
  font-size: 17px;
  font-weight: 600;
  
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.credential-stuffing-2 .ps-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

.credential-stuffing-2 .ps-count {
  
  font-size: 22px;
  font-weight: 700;
  color: var(--violet3);
  margin-top: 10px;
}

/* ── VECTOR CARDS ── */
.credential-stuffing-2 .vector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 52px;
}

.credential-stuffing-2 .vc {
  background: var(--card);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}

.credential-stuffing-2 .vc:hover {
  background: var(--card2);
}

.credential-stuffing-2 .vc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.credential-stuffing-2 .vc:nth-child(1)::before {
  background: var(--red2);
}

.credential-stuffing-2 .vc:nth-child(2)::before {
  background: var(--violet);
}

.credential-stuffing-2 .vc:nth-child(3)::before {
  background: var(--amber);
}

.credential-stuffing-2 .vc:nth-child(4)::before {
  background: var(--mint);
}

.credential-stuffing-2 .vc:nth-child(5)::before {
  background: var(--steel);
}

.credential-stuffing-2 .vc:nth-child(6)::before {
  background: var(--violet3);
}

.credential-stuffing-2 .vc-ico {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.credential-stuffing-2 .vc-name {
  
  font-size: 17px;
  font-weight: 600;
  
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}

.credential-stuffing-2 .vc-id {
  
  font-size: 9px;
  
  color: var(--text-dim);
  margin-bottom: 10px;
}

.credential-stuffing-2 .vc-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 400;
}

/* ── DIAGRAM ── */
.credential-stuffing-2 .diag {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px 16px 24px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.credential-stuffing-2 .diag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(157, 78, 221, .05) 0%, transparent 55%);
}

/* ── TABS ── */
.credential-stuffing-2 .tabs {
  display: flex;
  background: var(--border);
  border: 1px solid var(--border);
  gap: 1px;
  overflow-x: auto;
}

.credential-stuffing-2 .tab {
  flex: 1;
  min-width: 80px;
  background: var(--surface);
  border: none;
  cursor: pointer;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: background .2s;
}

.credential-stuffing-2 .tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  transform: scaleX(0);
  transition: transform .25s;
}

.credential-stuffing-2 .tab.active {
  background: var(--card2);
}

.credential-stuffing-2 .tab.active::after {
  transform: scaleX(1);
  background: var(--violet);
  box-shadow: 0 0 10px rgba(199, 125, 255, .5);
}

.credential-stuffing-2 .tab.done::after {
  transform: scaleX(1);
  background: var(--mint);
}

.credential-stuffing-2 .tab .ti {
  font-size: 17px;
  filter: grayscale(1);
  opacity: .35;
  transition: all .2s;
}

.credential-stuffing-2 .tab.active .ti,
.credential-stuffing-2 .tab.done .ti {
  filter: none;
  opacity: 1;
}

.credential-stuffing-2 .tab .tn {
  
  font-size: 9px;
  color: var(--text-dim);
  
}

.credential-stuffing-2 .tab .tl {
  
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  
  color: var(--text-dim);
  text-align: center;
}

.credential-stuffing-2 .tab.active .tn,
.credential-stuffing-2 .tab.active .tl {
  color: var(--violet);
}

.credential-stuffing-2 .tab.done .tn,
.credential-stuffing-2 .tab.done .tl {
  color: var(--mint);
}

/* ── PANELS ── */
.credential-stuffing-2 .panel {
  display: none;
  border: 1px solid var(--border);
  border-top: none;
  background: var(--card);
  animation: cs-panelIn .3s ease;
}

.credential-stuffing-2 .panel.active {
  display: block;
}

@keyframes cs-panelIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.credential-stuffing-2 .pgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.credential-stuffing-2 .pl {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  min-width: 0;
}

.credential-stuffing-2 .pr {
  padding: 32px 28px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.credential-stuffing-2 .p-phase {
  
  font-size: 9px;
  
  color: var(--violet2);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.credential-stuffing-2 .p-title {
  
  font-size: 32px;
  font-weight: 700;
  
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
}

.credential-stuffing-2 .ctx-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  margin-bottom: 20px;
  background: rgba(157, 78, 221, .05);
  border-left: 3px solid var(--violet2);
}

.credential-stuffing-2 .cx-ico {
  font-size: 22px;
}

.credential-stuffing-2 .cx-lbl {
  
  font-size: 9px;
  
  color: var(--text-dim);
  margin-bottom: 3px;
}

.credential-stuffing-2 .cx-val {
  
  font-size: 14px;
  font-weight: 600;
  
  color: var(--text);
}

.credential-stuffing-2 .p-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
}

.credential-stuffing-2 .p-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.credential-stuffing-2 .p-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.credential-stuffing-2 .p-list li::before {
  content: '◆';
  color: var(--violet2);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 8px;
}

/* ── TERMINAL ── */
.credential-stuffing-2 .term {
  background: #1f172f;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  
  font-size: 12px;
}

.credential-stuffing-2 .tbar {
  background: #1f12321a;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.credential-stuffing-2 .td {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.credential-stuffing-2 .td.r {
  background: #ff5f57;
}

.credential-stuffing-2 .td.y {
  background: #ffbd2e;
}

.credential-stuffing-2 .td.g {
  background: #28ca41;
}

.credential-stuffing-2 .ttl {
  margin-left: 8px;
  font-size: 10px;
  color: var(--text-dim);
  
}

.credential-stuffing-2 .tbody {
  padding: 16px 18px;
  line-height: 2.1;
  overflow-x: auto;
}

.credential-stuffing-2 .tbody .pr {
  color: #FFF;
}

.credential-stuffing-2 .tbody .cm {
  color: var(--text);
}

.credential-stuffing-2 .tbody .out {
  color: var(--text-mid);
}

.credential-stuffing-2 .tbody .hl {
  color: var(--violet);
}

.credential-stuffing-2 .tbody .hl2 {
  color: var(--violet3);
}

.credential-stuffing-2 .tbody .ok {
  color: var(--mint);
}

.credential-stuffing-2 .tbody .er {
  color: var(--red2);
}

.credential-stuffing-2 .tbody .or {
  color: var(--amber);
}

.credential-stuffing-2 .tbody .sp {
  color: var(--text-dim);
}

.credential-stuffing-2 .tbody .st {
  color: var(--steel);
}

.credential-stuffing-2 .tbody .wh {
  color: var(--white);
}

/* ── CONTROLS ── */
.credential-stuffing-2 .ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
}

.credential-stuffing-2 .cbtn {
  
  font-size: 11px;
  
  padding: 10px 22px;
  border: 1px solid;
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
}

.credential-stuffing-2 .cbtn-p {
  border-color: var(--border);
  color: var(--text-dim);
}

.credential-stuffing-2 .cbtn-p:hover:not(:disabled) {
  border-color: var(--text-mid);
  color: var(--text);
}

.credential-stuffing-2 .cbtn-p:disabled {
  opacity: .25;
  cursor: default;
}

.credential-stuffing-2 .cbtn-n {
  border-color: var(--violet2);
  color: var(--violet);
}

.credential-stuffing-2 .cbtn-n:hover:not(:disabled) {
  background: var(--violet);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(199, 125, 255, .4);
}

.credential-stuffing-2 .cbtn-n:disabled {
  opacity: .25;
  cursor: default;
}

.credential-stuffing-2 .c-ind {
  
  font-size: 11px;
  color: var(--text-dim);
  
}

.credential-stuffing-2 .c-ind em {
  color: var(--violet);
  font-style: normal;
}

/* ── SITE TABLE ── */
.credential-stuffing-2 .site-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 52px;
  overflow-x: auto;
}

.credential-stuffing-2 .sth-label {
  
  font-size: 9px;
  
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.credential-stuffing-2 .site-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.credential-stuffing-2 .site-table th {
  
  font-size: 9px;
  
  color: var(--text-dim);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}

.credential-stuffing-2 .site-table td {
  font-size: 13px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.credential-stuffing-2 .site-table tr:last-child td {
  border-bottom: none;
}

.credential-stuffing-2 .site-table tr:hover td {
  background: rgba(157, 78, 221, .03);
}

.credential-stuffing-2 .td-site {
  
  font-size: 12px;
  color: var(--text-mid);
}

.credential-stuffing-2 .td-ok {
  color: var(--mint);
  font-size: 13px;
}

.credential-stuffing-2 .td-warn {
  color: var(--amber);
  font-size: 13px;
}

.credential-stuffing-2 .td-risk-h {
  color: var(--red2);
  
  font-size: 10px;
  
}

.credential-stuffing-2 .td-risk-m {
  color: var(--amber);
  
  font-size: 10px;
  
}

.credential-stuffing-2 .td-risk-l {
  color: var(--mint);
  
  font-size: 10px;
  
}

.credential-stuffing-2 .rate-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border: 1px solid;
  
  font-size: 10px;
}

.credential-stuffing-2 .rate-pill.h {
  color: var(--red2);
  border-color: rgba(239, 35, 60, .4);
}

.credential-stuffing-2 .rate-pill.m {
  color: var(--amber);
  border-color: rgba(255, 209, 102, .4);
}

.credential-stuffing-2 .rate-pill.l {
  color: var(--mint);
  border-color: rgba(6, 214, 160, .4);
}

.credential-stuffing-2 .mini-bar {
  height: 5px;
  background: var(--border);
  border-radius: 2px;
  width: 100px;
  overflow: hidden;
}

.credential-stuffing-2 .mini-fill {
  height: 100%;
  border-radius: 2px;
}

/* ── SIGNAL CARDS ── */
.credential-stuffing-2 .signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 52px;
}

.credential-stuffing-2 .sg-card {
  background: var(--card);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}

.credential-stuffing-2 .sg-card:hover {
  background: var(--card2);
}

.credential-stuffing-2 .sg-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  opacity: .3;
  transition: opacity .2s;
}

.credential-stuffing-2 .sg-card:hover::after {
  opacity: 1;
}

.credential-stuffing-2 .sg-card:nth-child(1)::after {
  background: var(--red2);
}

.credential-stuffing-2 .sg-card:nth-child(2)::after {
  background: var(--red2);
}

.credential-stuffing-2 .sg-card:nth-child(3)::after {
  background: var(--amber);
}

.credential-stuffing-2 .sg-card:nth-child(4)::after {
  background: var(--amber);
}

.credential-stuffing-2 .sg-card:nth-child(5)::after {
  background: var(--mint);
}

.credential-stuffing-2 .sg-card:nth-child(6)::after {
  background: var(--mint);
}

.credential-stuffing-2 .sg-sev {
  display: inline-block;
  
  font-size: 8px;
  
  padding: 2px 8px;
  border: 1px solid;
  margin-bottom: 10px;
}

.credential-stuffing-2 .sg-sev.h {
  color: var(--red2);
  border-color: rgba(239, 35, 60, .5);
}

.credential-stuffing-2 .sg-sev.m {
  color: var(--amber);
  border-color: rgba(255, 209, 102, .5);
}

.credential-stuffing-2 .sg-sev.l {
  color: var(--mint);
  border-color: rgba(6, 214, 160, .5);
}

.credential-stuffing-2 .sg-title {
  
  font-size: 16px;
  font-weight: 600;
  
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.credential-stuffing-2 .sg-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 400;
}

.credential-stuffing-2 .sg-code {
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  
  font-size: 10px;
  color: var(--violet3);
  line-height: 1.9;
}

/* ── DEFENSE GRID ── */
.credential-stuffing-2 .def-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 52px;
}

.credential-stuffing-2 .def-card {
  background: var(--card);
  padding: 24px 20px;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}

.credential-stuffing-2 .def-card:hover {
  background: var(--card2);
}

.credential-stuffing-2 .def-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mint2);
  opacity: .2;
  transition: opacity .2s;
}

.credential-stuffing-2 .def-card:hover::before {
  opacity: .8;
}

.credential-stuffing-2 .def-ico {
  font-size: 24px;
  margin-bottom: 12px;
}

.credential-stuffing-2 .def-title {
  
  font-size: 16px;
  font-weight: 600;
  
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}

.credential-stuffing-2 .def-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 400;
}

.credential-stuffing-2 .def-code {
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  
  font-size: 10px;
  color: var(--mint);
  line-height: 1.9;
}

/* ── FOOTER ── */
.credential-stuffing-2 footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  
  font-size: 10px;
  color: var(--text-dim);
  
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .credential-stuffing-2 .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-stuffing-2 .vector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .credential-stuffing-2 .container {
    padding: 0 16px;
  }

  .credential-stuffing-2 header {
    padding: 32px 0 28px;
  }

  .credential-stuffing-2 .cred-rain {
    display: none;
  }

  .credential-stuffing-2 .stats,
  .credential-stuffing-2 .vector-grid,
  .credential-stuffing-2 .def-grid,
  .credential-stuffing-2 .signal-grid {
    grid-template-columns: 1fr;
  }

  .credential-stuffing-2 .pgrid {
    grid-template-columns: 1fr;
  }

  .credential-stuffing-2 .pl {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 20px;
  }

  .credential-stuffing-2 .pr {
    padding: 24px 20px;
  }

  .credential-stuffing-2 .p-title {
    font-size: 26px;
  }

  .credential-stuffing-2 .tbody {
    font-size: 10px;
    padding: 12px 14px;
    white-space: pre;
    word-break: normal;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .credential-stuffing-2 .stuffing-console {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .credential-stuffing-2 .sc-left,
  .credential-stuffing-2 .sc-right {
    padding: 20px 16px;
    min-width: 0;
    overflow: hidden;
  }

  .credential-stuffing-2 .cr-user {
    min-width: 120px;
  }

  .credential-stuffing-2 .pipeline {
    padding: 24px 16px;
  }

  .credential-stuffing-2 .diag {
    padding: 20px 10px;
  }

  .credential-stuffing-2 .pipe-steps {
    flex-direction: column;
  }

  .credential-stuffing-2 .pipe-step::after {
    content: '▼';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -12px;
    transform: translateX(-50%);
  }

  .credential-stuffing-2 .pipe-step {
    margin-bottom: 16px;
  }

  .credential-stuffing-2 .proxy-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .credential-stuffing-2 .pgrid {
    min-height: unset;
    overflow: hidden;
  }

  .credential-stuffing-2 .site-table-wrap {
    padding: 16px;
    margin-bottom: 32px;
  }

  .credential-stuffing-2 .signal-grid,
  .credential-stuffing-2 .def-grid {
    margin-bottom: 32px;
  }

  .credential-stuffing-2 .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .credential-stuffing-2 .tabs::-webkit-scrollbar {
    display: none;
  }

  .credential-stuffing-2 .tab {
    flex: 0 0 calc(25% - 1px);
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  .credential-stuffing-2 h1 {
    font-size: 42px;
  }

  .credential-stuffing-2 h1 .sub-line {
    font-size: 14px;
  }

  .credential-stuffing-2 .h-desc {
    font-size: 15px;
  }

  .credential-stuffing-2 .stats {
    grid-template-columns: 1fr;
  }

  .credential-stuffing-2 .proxy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-stuffing-2 .tab {
    flex: 0 0 calc(33.333% - 1px);
    min-width: 80px;
  }

  .credential-stuffing-2 .counter-strip {
    grid-template-columns: 1fr;
  }

  .credential-stuffing-2 .tbody {
    font-size: 8.5px;
    line-height: 1.8;
  }

  .credential-stuffing-2 .ctx-box {
    padding: 10px;
    gap: 10px;
  }

  .credential-stuffing-2 .cx-val {
    font-size: 13px;
  }
}

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 5px; height: 6px; }
  ::-webkit-scrollbar-track { background: #873cf015; }
  ::-webkit-scrollbar-thumb { background: #873cf015; border-radius: 3px; }