* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	background: #fff;
}

/* full-height column layout */
.shell {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	height: 100vh;
}

/* lead headline */
.lead-title {
	font-size: 45px;
	max-width: 800px;
	margin: 0 auto 20px;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: 800;
	color: #2c3e50;
	padding: 0 10px;
	letter-spacing: 0.5px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ── video block ── */
#viewer {
	position: relative;
	z-index: 2;
}

#viewer-video {
	display: block;
	width: 100%;
	max-width: 900px;
	height: auto;
	margin: 0 auto;
	pointer-events: none;
}

/* прозорий клікабельний шар над відео (з'являється після першого кліку) */
#viewer-veil {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	display: none;
}

/* play-кнопка накриває область відео */
#viewer-cta {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	text-align: center;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease;
}

/* приховування play-кнопки після кліку */
.is-off {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* На мобайлі play-кнопка завжди менша за відео та масштабується скриптом. */
@media screen and (max-width: 600px) {
	#viewer-cta > * {
		width: auto !important;
		max-width: 72% !important;
		box-sizing: border-box !important;
	}
}

/* ── buy form base ── */
#buy-form {
	margin: 0 auto;
}

.buyform {
	--container: 1080px;
	--brand: #f2a300;
	--ink: #0f1720;
	--muted: #5a6676;
	--line: #e7ecf2;
	--radius: 14px;
	--shadow: 0 18px 42px rgba(16, 24, 40, 0.12);

	color: var(--ink);
	background: #fff;
	padding: 20px 16px 34px;
}

.buyform-wrap {
	max-width: 600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1;
	gap: 26px;
	align-items: start;
}

.buyform-media {
	margin: 0;
	display: flex;
	justify-content: center;
}

.buyform-media img {
	display: block;
	width: auto;
	height: 260px;
	object-fit: contain;
	border-radius: 12px;
}

/* form base reset (visual styles live in #form-style) */
.buyform-card {
	background: #fff;
}

.buyform-row {
	margin-bottom: 12px;
}

.buyform-label {
	display: block;
	font-weight: 800;
	margin: 0 0 6px;
}

.buyform-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
	font-size: 16px;
	outline: none;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}

.buyform-input:focus {
	border-color: color-mix(in oklab, var(--brand) 70%, #000 0%);
	box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 30%, #fff 70%);
}

.buyform-btn {
	width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: var(--brand);
	color: #111;
	border: 2px solid rgba(0, 0, 0, 0.08);
	padding: 14px 16px;
	border-radius: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	cursor: pointer;
	transition:
		filter 0.2s,
		transform 0.04s;
}

.buyform-btn:hover {
	filter: brightness(1.05);
}

.buyform-btn:active {
	transform: translateY(1px);
}

/* form heading & extras */
.buyform-title {
	text-align: center;
	font-size: clamp(22px, 4vw, 30px);
	font-weight: 900;
	margin: 0 0 8px;
}

.buyform-info {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border: 2px solid #e0e0e8;
	border-radius: 12px;
	padding: 12px 14px;
	margin: 12px 0 8px;
	font-size: 14px;
	line-height: 1.5;
}

.buyform-info p {
	margin: 0;
}

.buyform-info-ic {
	flex-shrink: 0;
	font-size: 20px;
}

.buyform-legal {
	text-align: center;
	font-size: 13px;
	color: #888;
	margin: 8px 0 0;
	line-height: 1.5;
}

/* responsive: buy form */
@media (max-width: 980px) {
	.buyform-wrap {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 520px) {
	.buyform {
		padding: 16px 12px 28px;
	}

	.buyform-media img {
		width: 100%;
		height: 200px;
	}
}

/* ── footer base ── */
.sitefoot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px 28px;
	width: 100%;
	margin-top: 40px;
	padding: 36px 72px;
	background-color: #1a1a2e;
	color: #c2c6d6;
	box-sizing: border-box;
}

.sitefoot .foot-copy {
	font-size: 14px;
	font-weight: 600;
	color: #e2e4ec;
	margin: 0;
}

.sitefoot .foot-note {
	width: 100%;
	font-size: 11px;
	color: #8a8ea0;
	margin: 4px 0 0;
	text-align: center;
}

ul.foot-menu {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 26px;
	padding: 0;
	margin: 0;
}

ul.foot-menu li a {
	text-decoration: none;
	color: #b0b4c8;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	transition: color 0.2s;
}

ul.foot-menu li a:hover {
	color: #ffffff;
}

@media screen and (max-width: 900px) {
	.sitefoot {
		padding: 28px 36px;
	}
}

@media screen and (max-width: 600px) {
	.sitefoot {
		flex-direction: column;
		padding: 24px 20px;
		gap: 18px;
		text-align: center;
	}

	ul.foot-menu {
		flex-direction: column;
		gap: 12px;
	}

	ul.foot-menu li a,
	.sitefoot .foot-copy {
		font-size: 13px;
	}
}

/* responsive: lead */
@media (max-width: 600px) {
	.lead-title {
		font-size: 22px;
		margin: 10px auto 15px;
	}
}

@media screen and (max-width: 500px) {
	.lead-title {
		font-size: 28px;
		margin-top: 60px;
	}
}

@media screen and (max-width: 360px) {
	.lead-title {
		font-size: 30px;
	}
}
