/* Site checker — the public "scan my site" widget. Dark band so it reads as a
   tool, not another marketing section. */
.vp-check { background: #0b1226; color: #e9edf8; }
.vpc-wrap { max-width: 900px; margin: 0 auto; padding: 62px 24px; text-align: center; }
.vp-check h2 { color: #fff; font-size: clamp(23px, 3vw, 33px); margin: 0 0 10px; line-height: 1.22; }
.vpc-sub { color: #9aa5c2; margin: 0 0 26px; font-size: 16px; }

.vpc-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.vpc-url {
	flex: 1 1 340px; max-width: 460px;
	padding: 15px 18px; font-size: 16px;
	border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
	background: rgba(255,255,255,.06); color: #fff;
}
.vpc-url::placeholder { color: #7b86a3; }
.vpc-url:focus { outline: none; border-color: #ff3d8a; background: rgba(255,255,255,.09); }
.vpc-go {
	padding: 15px 30px; font-size: 16px; font-weight: 800;
	border: 0; border-radius: 999px; cursor: pointer;
	background: #ff3d8a; color: #fff;
}
.vpc-go:hover { background: #ff5fa2; }
.vpc-go[disabled] { opacity: .6; cursor: default; }

.vpc-out { margin-top: 30px; text-align: left; }
.vpc-out[hidden] { display: none; }
.vpc-msg { color: #ffb3cf; text-align: center; }

.vpc-score {
	display: flex; align-items: center; gap: 18px; justify-content: center;
	margin-bottom: 26px; flex-wrap: wrap;
}
.vpc-num {
	width: 92px; height: 92px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 30px; font-weight: 800; color: #fff;
	border: 3px solid currentColor;
}
.vpc-num.good { color: #35d07f; }
.vpc-num.mid  { color: #ffb648; }
.vpc-num.bad  { color: #ff5f6d; }
.vpc-num b { color: #fff; }
.vpc-verdict { text-align: left; max-width: 460px; }
.vpc-verdict b { color: #fff; display: block; font-size: 18px; margin-bottom: 4px; }
.vpc-verdict span { color: #9aa5c2; font-size: 14.5px; }

.vpc-group { margin-bottom: 22px; }
.vpc-group h3 {
	color: #9aa5c2; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
	margin: 0 0 10px;
}
.vpc-item {
	display: flex; gap: 12px; align-items: flex-start;
	padding: 12px 14px; border-radius: 12px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.07);
	margin-bottom: 8px;
}
.vpc-dot { flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: 2px;
	display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #0b1226; }
.vpc-dot.pass { background: #35d07f; }
.vpc-dot.warn { background: #ffb648; }
.vpc-dot.fail { background: #ff5f6d; }
.vpc-dot.unknown { background: #55618a; color: #cdd4e6; }
.vpc-txt b { display: block; color: #fff; font-size: 15px; margin-bottom: 2px; }
.vpc-txt span { color: #a9b3ce; font-size: 14px; line-height: 1.5; }

.vpc-cta { margin-top: 22px; text-align: center; }
.vpc-cta a {
	display: inline-block; padding: 14px 30px; border-radius: 999px;
	background: #ff3d8a; color: #fff; font-weight: 800; text-decoration: none;
}
.vpc-cta a:hover { background: #ff5fa2; }
.vpc-cta p { color: #7b86a3; font-size: 13px; margin-top: 10px; }

/* ---- Enfold overrides -----------------------------------------------------
   Enfold styles form inputs at ID specificity, which was winning outright: the
   field rendered white and only 40px tall against a 60px button, so the two sat
   visibly out of line. Match them explicitly and centre the row. */
#top .vp-check .vpc-form,
.vp-check .vpc-form {
	align-items: center;
	margin: 0;
}
#top .vp-check .vpc-url,
.vp-check .vpc-url {
	height: 54px;
	line-height: 1.2;
	padding: 0 20px !important;
	margin: 0 !important;
	box-sizing: border-box;
	border: 1px solid rgba(255,255,255,.18) !important;
	border-radius: 999px !important;
	background: rgba(255,255,255,.07) !important;
	color: #fff !important;
	font-size: 16px !important;
	box-shadow: none !important;
}
#top .vp-check .vpc-url:focus,
.vp-check .vpc-url:focus {
	border-color: #ff3d8a !important;
	background: rgba(255,255,255,.11) !important;
}
#top .vp-check .vpc-url::placeholder { color: #8b95b1 !important; }
#top .vp-check .vpc-go,
.vp-check .vpc-go {
	height: 54px;
	padding: 0 30px !important;
	margin: 0 !important;
	box-sizing: border-box;
	line-height: 1;
	border-radius: 999px !important;
}

/* Tighter inside the market band: less air above the field, less below the button. */
#top .market .vpc-wrap, .market .vpc-wrap { padding: 18px 0 4px !important; }
#top .market .vp-check .vpc-sub, .market .vp-check .vpc-sub { margin-bottom: 18px; }
#top .market .vp-check h2, .market .vp-check h2 { margin-bottom: 8px; }
