:root {
	--bg: #ffffff;
	--card: #ffffff;
	--card-soft: #f7f5f2;
	--line: #ebe7e2;
	--text: #111111;
	--muted: #6b6b6b;
	--accent: #f5493e;
	--accent-soft: #ff665b;
	--neutral-button: #efefef;
}

.landing {
	padding: 8px 8px 28px;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin: 0 0 34px;
}

.step-card {
	min-height: 132px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 18px 20px;
	/* box-shadow: 0 2px 8px rgba(17, 24, 39, .05); */
}

.step-index {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	/* background: var(--accent-soft);   */
	background: #F5493E;
	color: #fff;
	font-size: .78rem;
	font-weight: 800;
	margin-bottom: 12px;
	/* box-shadow: 0 4px 10px rgba(245, 73, 62, .22); */
}

.step-title {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 800;
	color: #323232;
}

.step-copy {
	margin: 0;
	color: var(--muted);
	font-size: .92rem;
	line-height: 1.45;
}

.landing-actions {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin: 0 0 54px;
	flex-wrap: wrap;
}

.landing-action {
	min-width: 214px;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid transparent;
	padding: 0 22px;
	font-size: .96rem;
	font-weight: 800;
	text-decoration: none;
	transition: transform .15s ease, opacity .15s ease;
}

.landing-action:hover {
	transform: translateY(-1px);
}

.landing-action-neutral {
	background: var(--neutral-button);
	color: #373737;
	border-color: #ececec;
}

.landing-action-primary {
	background: var(--accent);
	color: #fff;
	/* box-shadow: 0 8px 18px rgba(245, 73, 62, .18); */
}

.prize-showcase {
	display: flex;
	justify-content: center;
}

.prize-card {
	width: min(100%, 330px);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 5px 18px rgba(17, 24, 39, .06);
	overflow: hidden;
}

.prize-card-head {
	position: relative;
	padding: 16px 18px 14px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
	border-bottom: 1px solid var(--line);
}

.prize-card-head::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--accent);
}

.prize-card-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	color: #242424;
}

.prize-card-body {
	position: relative;
	padding: 42px 20px 24px;
}

.prize-badge {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 3px solid #222;
	background: #fff;
	font-size: 1.1rem;
	font-weight: 900;
	color: #222;
}

.tv-mock {
	width: 100%;
	aspect-ratio: 16 / 10;
	position: relative;
	border: 2px solid #3d3d3d;
	border-bottom-width: 6px;
	border-radius: 4px;
	overflow: hidden;
	background: radial-gradient(circle at 20% 22%, rgba(255,255,255,.8) 0%, rgba(255,255,255,0) 22%), radial-gradient(circle at 35% 58%, rgba(30,86,190,.95) 0%, rgba(57,117,221,.78) 20%, rgba(20,48,115,.86) 42%, rgba(8,21,51,.95) 70%), radial-gradient(circle at 76% 20%, rgba(255,255,255,.92) 0%, rgba(208,233,255,.58) 18%, rgba(123,180,235,.42) 33%, rgba(25,59,131,.9) 78%), linear-gradient(135deg, #d8efff 0%, #7eb9ea 28%, #2458b9 55%, #0f2252 100%);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
}

.tv-brand {
	position: absolute;
	right: 12px;
	bottom: 10px;
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: -.03em;
	color: rgba(255,255,255,.92);
}

.tv-stand {
	width: 72px;
	height: 16px;
	margin: 0 auto;
	position: relative;
	background: linear-gradient(180deg, #323232 0%, #111 100%);
	clip-path: polygon(12% 100%, 88% 100%, 72% 0, 28% 0);
}

@media (max-width: 960px) {
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.step-card {
		min-height: 0;
	}
}

@media (max-width: 620px) {
	.page {
		padding: 10px;
	}

	.landing {
		padding: 4px 0 18px;
	}

	.landing-actions {
		gap: 12px;
		margin-bottom: 34px;
	}

	.landing-action {
		width: 100%;
		min-width: 0;
	}

	.prize-card {
		border-radius: 14px;
	}
}
