:root {
	--page-bg: #fafafa;
	--text-primary: #262626;
	--text-secondary: #7d7d7d;
	--text-hint: #afafaf;
	--line-brand: #d9468c;
	--brand-gradient: linear-gradient(138deg, #ff00c7 24.7%, #e30fb5 49.94%, #b516ff 83.36%, #612cfa 108.82%);
	--card-shadow:
		0 24px 80px rgba(38, 38, 38, 0.12),
		0 8px 24px rgba(38, 38, 38, 0.06);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	font-family:
		Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(255, 0, 199, 0.12), transparent 18%),
		radial-gradient(circle at top right, rgba(97, 44, 250, 0.12), transparent 20%),
		linear-gradient(180deg, #ffffff 0%, var(--page-bg) 100%);
	color: var(--text-primary);
}

body {
	position: relative;
	overflow-x: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: auto;
	border-radius: 999px;
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
}

body::before {
	top: -120px;
	left: -140px;
	width: 240px;
	height: 240px;
	background: rgba(255, 0, 199, 0.14);
}

body::after {
	right: -120px;
	bottom: 10%;
	width: 220px;
	height: 220px;
	background: rgba(97, 44, 250, 0.12);
}

p {
	margin: 0;
}

.page {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	padding: 32px 20px 48px;
}

.shell {
	width: min(1120px, 100%);
	margin: 0 auto;
}

.footer {
	margin-top: 20px;
	text-align: center;
	padding: 0 6px;
	color: var(--text-hint);
	font-size: 14px;
}

.footer-link {
	color: var(--line-brand);
	font-weight: 600;
	text-decoration: none;
}

.footer-link:hover {
	text-decoration: underline;
}

.hero {
	display: grid;
	gap: 16px;
	margin-bottom: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.brand-mark svg {
	width: 42px;
	height: 42px;
	display: block;
}

.brand-text {
	display: inline-flex;
}

.brand-title {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: normal;
	line-height: 1;
}

.badge {
	width: fit-content;
	padding: 8px 14px;
	border: 1px solid rgba(217, 70, 140, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(14px);
	color: var(--line-brand);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	max-width: 760px;
	font-size: clamp(32px, 6vw, 64px);
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.hero p {
	margin: 0;
	max-width: 640px;
	font-size: clamp(16px, 2.2vw, 20px);
	line-height: 1.5;
	color: var(--text-secondary);
}

.content-frame {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255, 0, 199, 0.35), rgba(97, 44, 250, 0.18), rgba(255, 255, 255, 0.9));
	box-shadow: var(--card-shadow);
}

.content-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 20%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 45%);
	pointer-events: none;
}

.content-surface {
	position: relative;
	padding: 28px;
	border-radius: 31px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 250, 0.94));
	backdrop-filter: blur(20px);
}

.content-surface::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(217, 70, 140, 0.35), transparent);
}

.help-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 24px;
	align-items: stretch;
}

.help-main {
	display: grid;
	gap: 18px;
}

.help-card,
.download-card,
.support-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(38, 38, 38, 0.06);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 12px 34px rgba(38, 38, 38, 0.05);
}

.help-card {
	padding: 24px;
}

.help-card::after,
.download-card::after,
.support-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 48%);
	pointer-events: none;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--line-brand);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: var(--brand-gradient);
}

.help-card h2,
.downloads-panel h2,
.support-card h2 {
	margin: 0 0 12px;
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.help-card p,
.downloads-panel p,
.support-card p {
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.65;
}

.help-points {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.help-point {
	display: grid;
	gap: 6px;
	padding: 16px 18px;
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(250, 250, 250, 0.95), rgba(255, 255, 255, 0.82));
	border: 1px solid rgba(38, 38, 38, 0.05);
}

.help-point strong {
	font-size: 16px;
}

.downloads-panel {
	display: grid;
	gap: 18px;
}

.download-card,
.support-card {
	padding: 22px;
}

.download-card h3 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.1;
}

.download-card p {
	margin: 0 0 18px;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 20px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: -0.01em;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

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

.button-primary {
	color: #ffffff;
	background: var(--brand-gradient);
	box-shadow: 0 16px 28px rgba(181, 22, 255, 0.22);
}

.button-secondary {
	color: var(--text-primary);
	background: rgba(38, 38, 38, 0.06);
}

.support-card {
	background:
		radial-gradient(circle at top right, rgba(255, 0, 199, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 250, 250, 0.9));
}

.support-card .button {
	width: 100%;
	margin-top: 18px;
}

.support-note {
	margin-top: 16px;
	font-size: 14px;
	color: var(--text-secondary);
}

.support-alt {
	text-align: center;
	margin-top: 8px;
	font-size: 14px;
	color: var(--text-secondary);
}

.support-email {
	display: inline-flex;
	margin-top: 8px;
	color: var(--line-brand);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.support-email:hover {
	text-decoration: underline;
}

.go-app {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	min-height: 48px;
	background-color: var(--page-bg);
}

.go-app__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 14px;
}

.go-app__left {
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
}

.go-app__logo {
	width: 26px;
	height: 26px;
}

.go-app b {
	font-size: 12px;
	line-height: 14px;
}

.go-app p {
	font-size: 10px;
	line-height: 12px;
	color: var(--text-secondary);
}

.go-app__button {
	text-decoration: none;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
}

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

	.hero {
		gap: 12px;
		margin-bottom: 16px;
	}

	.content-frame {
		border-radius: 24px;
	}

	.content-surface {
		padding: 14px;
		border-radius: 23px;
	}

	.footer {
		margin-top: 16px;
	}

	.help-layout {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.help-card,
	.download-card,
	.support-card {
		border-radius: 22px;
	}

	.help-card,
	.download-card,
	.support-card {
		padding: 18px;
	}
}