/* 검증 카드(LCD) — 레퍼런스 사진 구도: 로고 홀로그램 창 + 도메인 + 검사 7항목 */

.vc {
  width: 300px;
  background: var(--panel);
  border: 1px solid var(--ok);
  border-radius: var(--r-lg);
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, 0.18),
    0 0 26px rgba(74, 222, 128, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

/* 로고 홀로그램 창 */
.vc-holo {
  position: relative;
  height: 158px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 55%, rgba(63, 216, 255, 0.12) 0%, rgba(5, 10, 20, 0) 60%),
    linear-gradient(180deg, #071120 0%, #04080f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-holo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(63, 216, 255, 0.05) 0 1px, transparent 1px 4px);
  pointer-events: none;
}

.vc-swirl {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(63, 216, 255, 0) 0deg, rgba(63, 216, 255, 0.16) 90deg, rgba(63, 216, 255, 0) 180deg, rgba(63, 216, 255, 0.1) 290deg, rgba(63, 216, 255, 0) 360deg);
  animation: vc-spin 9s linear infinite;
  filter: blur(2px);
}

@keyframes vc-spin {
  to { transform: rotate(360deg); }
}

/* 레퍼런스처럼 로고가 창을 꽉 채운다. 위쪽엔 검사 대상 사이트명 */
/* ⚠로고에 drop-shadow 금지(헤드리스에서 화면 전체가 안 그려진 사고) — 발광은 .vc-swirl 빛무리가 담당 */
.vc-logo {
  position: relative;
  z-index: 1;
  max-height: 88px;
  max-width: 84%;
  object-fit: contain;
}

.vc-holo-site {
  position: absolute;
  top: 10px;
  left: 14px;
  z-index: 1;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #cfe2f2;
  text-shadow: 0 0 10px rgba(63, 216, 255, 0.4);
}

.vc-logo-text {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.1em;
  color: #eef6ff;
  text-shadow: 0 0 18px rgba(63, 216, 255, 0.55);
}

/* 모서리 계기 눈금 */
.vc-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-soft);
  z-index: 2;
}

.vc-corner.tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.vc-corner.tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; }
.vc-corner.bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; }
.vc-corner.br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }

/* 도메인 줄 */
.vc-head {
  padding: 12px 14px 8px;
}

.vc-domain-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vc-domain {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.vc-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ok);
  border: 1px solid rgba(74, 222, 128, 0.5);
  border-radius: var(--r-sm);
  padding: 1px 6px;
}

.vc-badge.demo {
  color: var(--cyan-dim);
  border-color: var(--line);
  margin-left: auto;
}

.vc-last {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

/* 검사 목록 */
.vc-checks {
  padding: 6px 14px 12px;
}

.vc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4.5px 0;
  border-top: 1px solid rgba(22, 38, 63, 0.55);
  font-size: 11.5px;
}

.vc-row:first-child {
  border-top: 0;
}

.vc-row svg {
  flex: 0 0 auto;
  color: var(--cyan-dim);
}

.vc-row .k {
  color: var(--cyan-dim);
  letter-spacing: 0.03em;
}

.vc-row .v {
  margin-left: auto;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.vc-row.ok .v {
  color: var(--ok);
}

.vc-row.info .v {
  color: var(--info);
}

.vc-row.scan .v {
  color: var(--cyan);
}

/* 스캔 진행 줄 */
.vc-scanline {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.vc.scanning .vc-scanline {
  opacity: 1;
  animation: vc-scan 1.1s linear infinite;
}

@keyframes vc-scan {
  0% { transform: translateX(-40%); }
  100% { transform: translateX(40%); }
}
