.vl {
	max-width: 1200px;
	margin: 0 auto;
	color: #FFF;
}

.vl,
.vl * {
	box-sizing: border-box;
}

.vl .vl-orange {
	color: #F40;
}

.vl-hero {
	display: grid;
	grid-template-columns: 1fr 560px;
	gap: 54px;
	align-items: center;
	padding: 44px 0 54px;
	position: relative;
}

.vl-hero::before {
	content: "";
	position: absolute;
	top: -260px;
	bottom: -80px;
	left: calc(50% - 50vw);
	width: 100vw;
	background: radial-gradient(ellipse 62% 52% at 68% 46%, rgba(255, 68, 0, .17) 0%, rgba(255, 68, 0, .085) 32%, rgba(255, 68, 0, .03) 55%, rgba(255, 68, 0, .008) 72%, transparent 88%);
	pointer-events: none;
	z-index: 0;
}

.vl-hero-text,
.vl-hero-shot {
	position: relative;
	z-index: 1;
}

.vl-badge {
	display: inline-block;
	border: 1px solid #FFD700;
	color: #FFD700;
	font-size: 13px;
	letter-spacing: 3px;
	padding: 5px 14px;
	margin-bottom: 20px;
}

.vl-h1 {
	margin: 0;
	font-size: 52px;
	font-weight: normal;
	line-height: 1.06;
	text-transform: uppercase;
}

.vl-sub {
	margin-top: 18px;
	font-size: 18px;
	line-height: 1.55;
	color: #C9C7C5;
	max-width: 520px;
}

.vl-cta-row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 26px;
}

.vl-cta-note {
	font-size: 13px;
	color: #ABABAB;
	line-height: 1.5;
}

.vl-btn {
	display: inline-block;
	box-sizing: border-box;
	height: 45px;
	line-height: 41px;
	padding: 0 24px;
	border: 2px solid #F40;
	background: #000;
	color: #F40;
	font-family: inherit;
	font-size: 19px;
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	text-decoration: none;
	transition: background-color linear .4s;
}

.vl-btn:hover {
	background: rgba(255, 68, 0, .4);
	color: #F40;
	text-decoration: none;
}

.vl-btn-gold {
	border-color: #FFD700;
	color: #FFD700;
}

.vl-btn-gold:hover {
	background: rgba(255, 215, 0, .25);
	color: #FFD700;
}

.vl-btn-cta {
	min-width: 220px;
}

.vl-foreign {
	margin-top: 14px;
	font-size: 14px;
}

.vl-foreign a {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid rgba(135, 206, 250, .45);
	background: rgba(135, 206, 250, .08);
	color: #87CEFA;
	text-decoration: none;
}

.vl-foreign a:hover {
	background: rgba(135, 206, 250, .18);
	color: #FFF;
	text-decoration: none;
}

.vl-foreign-wide {
	max-width: 1040px;
	margin: 20px auto 0;
	text-align: center;
}

.vl-shot-frame {
	border: 3px solid #3A4045;
	background: #1D1D1D;
}

.vl-shot-frame img,
.vl-card-shot img {
	cursor: zoom-in;
}

.vl-zoom {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9000;
	background: rgba(0, 0, 0, .92);
	padding: 20px;
	cursor: zoom-out;
}

.vl-zoom-on {
	display: flex;
	align-items: center;
	justify-content: center;
}

.vl-zoom img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.vl-zoom-close {
	position: absolute;
	top: 10px;
	right: 18px;
	font-size: 38px;
	line-height: 1;
	color: #DBDCDE;
	cursor: pointer;
}

.vl-sticky {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	z-index: 8000;
	padding: 0 28px;
	height: 46px;
	line-height: 42px;
	border: 2px solid #FFD700;
	background: #000;
	color: #FFD700;
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .6);
}

.vl-sticky:hover {
	background: rgba(255, 215, 0, .25);
	color: #FFD700;
	text-decoration: none;
}

.vl-sticky-on {
	display: block;
}

.vl-shot-frame img {
	display: block;
	width: 100%;
	height: 388px;
	object-fit: cover;
	object-position: top;
}

.vl-shot-caption {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
	font-size: 13px;
	color: #ABABAB;
}

.vl-new {
	background: #FFD700;
	color: #000;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 2px;
	padding: 2px 8px;
}

.vl-new-outline {
	color: #FFD700;
	font-size: 13px;
	border: 1px solid rgba(255, 215, 0, .5);
	padding: 1px 7px;
	margin-left: 6px;
	vertical-align: 3px;
}

.vl-features {
	padding: 40px 0 8px;
}

.vl-section-title {
	margin: 0;
	font-size: 32px;
	font-weight: normal;
	color: #F40;
	text-transform: uppercase;
}

.vl-center {
	text-align: center;
}

.vl-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-top: 26px;
}

.vl-card {
	background: #1D1D1D;
	border: 3px solid #3A4045;
	padding: 18px;
}

.vl-card-wide {
	grid-column: 1 / -1;
}

.vl-card-wide .vl-card-shot img {
	height: 620px;
	object-fit: contain;
}

.vl-card-shot {
	background: #141414;
	border: 1px solid #2b2f33;
}

.vl-card-shot img {
	display: block;
	width: 100%;
	height: 380px;
	object-fit: contain;
	object-position: center;
}

.vl-card-title {
	font-size: 20px;
	margin-top: 14px;
}

.vl-card-desc {
	font-size: 14px;
	color: #ABABAB;
	line-height: 1.5;
	margin-top: 4px;
}

.vl-fade img {
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent), linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
	-webkit-mask-composite: source-in;
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent), linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
	mask-composite: intersect;
	object-position: center;
}

.vl-minis {
	padding: 40px 0 8px;
}

.vl-mini-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin-top: 26px;
}

.vl-mini {
	background: #1D1D1D;
	border: 3px solid #3A4045;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.vl-mini-title {
	font-size: 18px;
}

.vl-mini-desc {
	font-size: 13px;
	color: #ABABAB;
	line-height: 1.5;
	margin-top: 6px;
	flex: 1;
}

.vl-mini-demo {
	margin-top: 14px;
	font-size: 12px;
}

.vl-demo-hidden {
	position: relative;
	background: #242323;
	padding: 12px 10px;
	text-align: center;
}

.vl-blur {
	filter: blur(4px);
	font-size: 14px;
	color: #DBDCDE;
	line-height: 1.7;
}

.vl-blur-note {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: #FFD700;
}

.vl-demo-row {
	background: #242323;
	padding: 8px 10px;
	display: flex;
	justify-content: space-between;
	color: #C9C7C5;
}

.vl-green {
	color: #7efb7e;
}

.vl-top-row {
	background: #242323;
	padding: 5px 10px;
	color: #C9C7C5;
	margin-top: 4px;
}

.vl-top-row:first-child {
	margin-top: 0;
}

.vl-top-gold {
	background: rgba(255, 215, 0, .16);
	border-left: 3px solid #FFD700;
	color: #FFD700;
}

.vl-demo-search {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.vl-big-gold {
	font-size: 30px;
	color: #FFD700;
}

.vl-search-q {
	background: #242323;
	border: 1px solid #3A4045;
	padding: 5px 10px;
	color: #DBDCDE;
	font-size: 13px;
}

.vl-mini-note {
	font-size: 12px;
	color: #8f8d8b;
}

.vl-demo-ad {
	border: 1px dashed #4a4848;
	padding: 10px;
	text-align: center;
	font-size: 13px;
	color: #6d6b69;
	text-decoration: line-through;
}

.vl-beta {
	display: inline-block;
	border: 1px solid #F40;
	color: #F40;
	font-size: 13px;
	padding: 4px 12px;
}

.vl-pricing {
	padding: 46px 0 24px;
}

.vl-active-sub {
	text-align: center;
	color: #FFD700;
	margin-top: 16px;
}

.vl-price-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
	max-width: 1040px;
	margin: 28px auto 0;
	align-items: stretch;
}

.vl-price-card {
	background: #1D1D1D;
	border: 3px solid #3A4045;
	padding: 28px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.vl-price-hit {
	border: 2px solid #FFD700;
	transform: translateY(-10px);
	box-shadow: 0 16px 40px rgba(255, 215, 0, .12);
}

.vl-hit-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: #FFD700;
	color: #000;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 2px;
	padding: 4px 14px;
	white-space: nowrap;
}

.vl-price-num {
	font-size: 42px;
}

.vl-discount {
	font-size: 15px;
	color: #7efb7e;
}

.vl-price-period {
	font-size: 14px;
	color: #ABABAB;
}

.vl-price-desc {
	font-size: 13px;
	color: #ABABAB;
	line-height: 1.6;
	margin: 14px 0 18px;
	flex: 1;
}

.vl-price-card form {
	margin: 0;
}

.vl-price-card .vl-btn {
	display: block;
	width: 100%;
}

.vl-forever {
	max-width: 1040px;
	margin: 26px auto 0;
	border: 1px solid #FFD700;
	background: rgba(255, 215, 0, .05);
	padding: 20px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.vl-forever form {
	margin: 0;
	flex: 0 0 auto;
}

.vl-forever-title {
	font-size: 21px;
	color: #FFD700;
}

.vl-forever-sub {
	font-size: 13px;
	color: #ABABAB;
	margin-top: 4px;
}

.vl-fineprint {
	max-width: 1040px;
	margin: 20px auto 0;
	font-size: 12px;
	color: #6d6b69;
	line-height: 1.6;
}

.vl-band {
	margin: 30px 0 0;
	background: #000;
	border-top: 1px solid #F40;
	padding: 30px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.vl-band-text {
	font-size: 24px;
	text-transform: uppercase;
}

@media (max-width: 999px) {
	.vl-hero {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 20px 0 30px;
		background: none;
	}

	.vl-h1 {
		font-size: 32px;
		line-height: 1.1;
	}

	.vl-sub {
		font-size: 15px;
		max-width: none;
	}

	.vl-cta-row {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		margin-top: 20px;
	}

	.vl-btn-cta {
		min-width: 0;
	}

	.vl-cta-note {
		text-align: center;
	}

	.vl-shot-frame img {
		height: 220px;
	}

	.vl-section-title {
		font-size: 24px;
	}

	.vl-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.vl-card-shot img {
		height: 180px;
	}

	.vl-card-wide .vl-card-shot img {
		height: 300px;
	}

	.vl-card-title {
		font-size: 17px;
	}

	.vl-mini-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.vl-sticky {
		left: 12px;
		right: 12px;
		bottom: 68px;
		transform: none;
		padding: 0;
		text-align: center;
	}

	.vl-zoom {
		padding: 8px;
	}

	.vl-foreign {
		text-align: center;
	}

	.vl-price-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 24px;
	}

	.vl-price-hit {
		transform: none;
	}

	.vl-price-num {
		font-size: 34px;
	}

	.vl-forever {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 16px;
	}

	.vl-band {
		flex-direction: column;
		text-align: center;
		padding: 22px 20px;
	}

	.vl-band-text {
		font-size: 18px;
	}
}
