/* Базовая типографика и выравнивание */
:root {
	--bg: #ffffff;
	--text: #222222;
	--muted: #666666;
	--accent: #d61f1f; /* красный заголовок */
	--link: #6a00d4;  /* фирменный WB фиолетовый, для hover */
}

* { box-sizing: border-box; }

html, body {
	height: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Merriweather", Georgia, "Times New Roman", serif;
	line-height: 1.6;
}

.page {
	min-height: 100vh;
	max-width: 920px;
	margin: 0 auto;
	padding: 48px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.title {
	margin: 0 0 28px;
	font-weight: 900;
	font-size: clamp(28px, 4vw, 42px);
	letter-spacing: 0.3px;
	color: var(--accent);
}

.lead {
	margin: 0 0 6px;
	font-size: clamp(16px, 2.2vw, 22px);
}

.wb {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	margin: 22px 0 28px;
	text-decoration: none;
	color: inherit;
}

.wb-url {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	color: var(--muted);
}

.wb-logo {
	display: block;
	width: min(300px, 72vw);
	height: auto;
}

.sub {
	margin: 4px 0 14px;
	font-size: clamp(15px, 2vw, 20px);
}

.social {
	display: flex;
	gap: 14px;
}

.social-link {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #f3f3f5;
	transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease;
}

.social-link:hover {
	background: #ece7fa;
	box-shadow: 0 4px 16px rgba(106, 0, 212, .18);
	transform: translateY(-1px);
}

.social-link img {
	display: block;
}

/* Небольшие улучшения на узких экранах */
@media (max-width: 420px) {
	.page { padding: 36px 16px; }
}

