.a4nth-shell {
	--a4nth-bg: #f5f6fb;
	--a4nth-bg-2: #e9edf7;
	--a4nth-panel: #ffffff;
	--a4nth-panel-2: #f8f9fd;
	--a4nth-ink: #141722;
	--a4nth-muted: #5f6878;
	--a4nth-soft: #778195;
	--a4nth-line: rgba(19, 26, 43, 0.13);
	--a4nth-line-strong: rgba(19, 26, 43, 0.22);
	--a4nth-red: #f2334a;
	--a4nth-orange: #ff8a25;
	--a4nth-purple: #7c4dff;
	--a4nth-violet: #b53cff;
	--a4nth-glow-red: rgba(242, 51, 74, 0.2);
	--a4nth-glow-orange: rgba(255, 138, 37, 0.22);
	--a4nth-glow-purple: rgba(124, 77, 255, 0.18);
	--a4nth-shadow: 0 22px 50px rgba(23, 27, 42, 0.14);
	--a4nth-font: "Jost", "Roboto", Arial, sans-serif;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	overflow-x: clip;
	width: 100%;
	max-width: 100%;
	color: var(--a4nth-ink);
	font-family: var(--a4nth-font);
	background:
		radial-gradient(circle at 12% 7%, var(--a4nth-glow-red), transparent 28rem),
		radial-gradient(circle at 88% 14%, var(--a4nth-glow-purple), transparent 26rem),
		linear-gradient(180deg, var(--a4nth-bg), var(--a4nth-bg-2));
	border: 1px solid var(--a4nth-line);
	border-radius: 8px;
	padding: clamp(22px, 4vw, 56px);
}

[data-theme="dark"] .a4nth-shell.a4nth-mode-auto,
.a4nth-shell.a4nth-mode-dark {
	--a4nth-bg: #05070c;
	--a4nth-bg-2: #0d1019;
	--a4nth-panel: rgba(18, 20, 31, 0.9);
	--a4nth-panel-2: rgba(28, 31, 46, 0.82);
	--a4nth-ink: #ffffff;
	--a4nth-muted: rgba(255, 255, 255, 0.74);
	--a4nth-soft: rgba(255, 255, 255, 0.58);
	--a4nth-line: rgba(255, 255, 255, 0.13);
	--a4nth-line-strong: rgba(255, 255, 255, 0.24);
	--a4nth-glow-red: rgba(242, 51, 74, 0.42);
	--a4nth-glow-orange: rgba(255, 138, 37, 0.3);
	--a4nth-glow-purple: rgba(124, 77, 255, 0.36);
	--a4nth-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .a4nth-shell.a4nth-mode-auto {
		--a4nth-bg: #05070c;
		--a4nth-bg-2: #0d1019;
		--a4nth-panel: rgba(18, 20, 31, 0.9);
		--a4nth-panel-2: rgba(28, 31, 46, 0.82);
		--a4nth-ink: #ffffff;
		--a4nth-muted: rgba(255, 255, 255, 0.74);
		--a4nth-soft: rgba(255, 255, 255, 0.58);
		--a4nth-line: rgba(255, 255, 255, 0.13);
		--a4nth-line-strong: rgba(255, 255, 255, 0.24);
		--a4nth-glow-red: rgba(242, 51, 74, 0.42);
		--a4nth-glow-orange: rgba(255, 138, 37, 0.3);
		--a4nth-glow-purple: rgba(124, 77, 255, 0.36);
		--a4nth-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
	}
}

.a4nth-shell *,
.a4nth-shell *::before,
.a4nth-shell *::after {
	box-sizing: border-box;
}

.a4nth-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(180deg, #000, transparent 78%);
	pointer-events: none;
}

.a4nth-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.86fr);
	gap: clamp(26px, 5vw, 64px);
	align-items: center;
	min-height: clamp(520px, 58vw, 680px);
}

.a4nth-hero__content,
.a4nth-section-head,
.a4nth-flow > div {
	min-width: 0;
}

.a4nth-kicker,
.a4nth-section-head > p {
	margin: 0 0 12px;
	color: var(--a4nth-orange);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.a4nth-hero h1,
.a4nth-section-head h2,
.a4nth-flow h2,
.a4nth-final h2 {
	margin: 0;
	color: var(--a4nth-ink);
	font-weight: 900;
	letter-spacing: 0;
}

.a4nth-hero h1 {
	max-width: 760px;
	font-size: clamp(44px, 7vw, 88px);
	line-height: 0.95;
}

.a4nth-hero__lead {
	margin: 24px 0 0;
	max-width: 720px;
	color: var(--a4nth-muted);
	font-size: clamp(17px, 2vw, 22px);
	line-height: 1.58;
}

.a4nth-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.a4nth-button,
.a4nth-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.a4nth-button svg,
.a4nth-card__link svg,
.a4nth-benefit svg,
.a4nth-placeholder svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: 0 0 auto;
}

.a4nth-button--primary {
	padding: 0 22px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--a4nth-red), var(--a4nth-orange));
	box-shadow: 0 18px 42px var(--a4nth-glow-red), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.a4nth-button--secondary {
	padding: 0 20px;
	color: var(--a4nth-ink);
	background: color-mix(in srgb, var(--a4nth-panel) 84%, transparent);
	border: 1px solid var(--a4nth-line-strong);
}

.a4nth-button:hover,
.a4nth-button:focus-visible,
.a4nth-card__link:hover,
.a4nth-card__link:focus-visible {
	transform: translateY(-2px);
	text-decoration: none;
}

.a4nth-button:focus-visible,
.a4nth-card__link:focus-visible,
.a4nth-filter:focus-visible,
.a4nth-faq__item summary:focus-visible {
	outline: 3px solid rgba(255, 138, 37, 0.36);
	outline-offset: 3px;
}

.a4nth-button--primary,
.a4nth-button--primary:hover,
.a4nth-button--primary:focus-visible,
.a4nth-card__link:not(.a4nth-card__link--disabled),
.a4nth-card__link:not(.a4nth-card__link--disabled):hover,
.a4nth-card__link:not(.a4nth-card__link--disabled):focus-visible {
	color: #ffffff !important;
}

.a4nth-button--primary span,
.a4nth-button--primary svg,
.a4nth-card__link:not(.a4nth-card__link--disabled) span,
.a4nth-card__link:not(.a4nth-card__link--disabled) svg {
	color: #ffffff !important;
}

.a4nth-button--secondary,
.a4nth-button--secondary:hover,
.a4nth-button--secondary:focus-visible {
	color: var(--a4nth-ink) !important;
}

.a4nth-button--secondary span,
.a4nth-button--secondary svg {
	color: currentColor !important;
}

.a4nth-hero__visual {
	min-width: 0;
}

.a4nth-hero__frame {
	position: relative;
	aspect-ratio: 1.04;
	min-height: 360px;
	border-radius: 8px;
	padding: 12px;
	background:
		linear-gradient(135deg, rgba(242, 51, 74, 0.42), rgba(124, 77, 255, 0.28)),
		var(--a4nth-panel);
	border: 1px solid var(--a4nth-line-strong);
	box-shadow: var(--a4nth-shadow), 0 0 62px var(--a4nth-glow-purple);
}

.a4nth-hero__frame .a4nth-image,
.a4nth-hero__frame .a4nth-placeholder {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.a4nth-hero__hud {
	position: absolute;
	right: 28px;
	bottom: 28px;
	display: grid;
	gap: 4px;
	min-width: 122px;
	padding: 14px;
	border-radius: 8px;
	color: #ffffff;
	background: rgba(5, 7, 12, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
}

.a4nth-hero__hud span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.a4nth-hero__hud strong {
	font-size: 34px;
	line-height: 1;
}

.a4nth-placeholder {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: #ffffff;
	background:
		radial-gradient(circle at 20% 18%, rgba(255, 138, 37, 0.52), transparent 30%),
		radial-gradient(circle at 82% 18%, rgba(124, 77, 255, 0.56), transparent 28%),
		radial-gradient(circle at 50% 88%, rgba(242, 51, 74, 0.5), transparent 36%),
		linear-gradient(135deg, #111522, #06080d);
}

.a4nth-placeholder::before {
	content: "";
	position: absolute;
	inset: 12%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 28px 28px;
}

.a4nth-placeholder svg {
	position: relative;
	z-index: 1;
	width: clamp(54px, 9vw, 112px);
	height: clamp(54px, 9vw, 112px);
	filter: drop-shadow(0 0 22px rgba(255, 138, 37, 0.4));
}

.a4nth-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 10px 0 28px;
}

.a4nth-filter {
	min-height: 42px;
	padding: 0 15px;
	border: 1px solid var(--a4nth-line);
	border-radius: 8px;
	background: color-mix(in srgb, var(--a4nth-panel) 78%, transparent);
	color: var(--a4nth-muted);
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
}

.a4nth-filter:hover,
.a4nth-filter.is-active {
	color: #ffffff;
	background: linear-gradient(135deg, var(--a4nth-purple), var(--a4nth-red));
	border-color: transparent;
	box-shadow: 0 12px 26px var(--a4nth-glow-purple);
}

.a4nth-section-head {
	max-width: 780px;
	margin: 0 0 24px;
}

.a4nth-section-head h2,
.a4nth-flow h2,
.a4nth-final h2 {
	font-size: clamp(30px, 4.4vw, 52px);
	line-height: 1.02;
}

.a4nth-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.a4nth-card {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr auto;
	min-width: 0;
	min-height: 520px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--a4nth-panel);
	border: 1px solid var(--a4nth-line);
	box-shadow: var(--a4nth-shadow);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.a4nth-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 138, 37, 0.44);
	box-shadow: var(--a4nth-shadow), 0 0 44px var(--a4nth-glow-orange);
}

.a4nth-card[hidden] {
	display: none;
}

.a4nth-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0a0d14;
}

.a4nth-card__media .a4nth-image,
.a4nth-card__media .a4nth-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.a4nth-card__status {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 8px;
	color: #ffffff;
	background: rgba(5, 7, 12, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.a4nth-card__body {
	padding: 22px;
}

.a4nth-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 14px;
}

.a4nth-card__badges span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 9px;
	border-radius: 8px;
	color: var(--a4nth-ink);
	background: color-mix(in srgb, var(--a4nth-panel-2) 78%, transparent);
	border: 1px solid var(--a4nth-line);
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
}

.a4nth-card__badges span:first-child {
	color: #ffffff;
	background: linear-gradient(135deg, var(--a4nth-red), var(--a4nth-purple));
	border-color: transparent;
}

.a4nth-card h3 {
	margin: 0;
	color: var(--a4nth-ink);
	font-size: clamp(24px, 2.5vw, 32px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
}

.a4nth-card p {
	margin: 14px 0 0;
	color: var(--a4nth-muted);
	font-size: 15px;
	line-height: 1.58;
}

.a4nth-card ul {
	display: grid;
	gap: 8px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.a4nth-card li {
	position: relative;
	padding-left: 18px;
	color: var(--a4nth-soft);
	font-size: 14px;
	line-height: 1.45;
}

.a4nth-card li::before {
	content: "";
	position: absolute;
	top: 0.62em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--a4nth-orange);
	box-shadow: 0 0 12px var(--a4nth-glow-orange);
}

.a4nth-card__link {
	justify-self: stretch;
	align-self: end;
	margin: 0 22px 22px;
	padding: 0 14px 0 16px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--a4nth-red), var(--a4nth-orange));
	box-shadow: 0 14px 34px var(--a4nth-glow-red);
}

.a4nth-card__link svg {
	margin-left: auto;
}

.a4nth-card__link--disabled {
	color: var(--a4nth-muted);
	background: color-mix(in srgb, var(--a4nth-panel-2) 86%, transparent);
	border: 1px solid var(--a4nth-line);
	box-shadow: none;
}

.a4nth-empty {
	margin-top: 16px;
	padding: 18px;
	border: 1px dashed var(--a4nth-line-strong);
	border-radius: 8px;
	background: color-mix(in srgb, var(--a4nth-panel) 78%, transparent);
	color: var(--a4nth-muted);
	font-weight: 800;
	text-align: center;
}

.a4nth-flow,
.a4nth-final {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
	gap: 24px;
	align-items: start;
	margin-top: 28px;
	padding: clamp(24px, 4vw, 38px);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(242, 51, 74, 0.12), rgba(124, 77, 255, 0.14)),
		var(--a4nth-panel);
	border: 1px solid var(--a4nth-line);
	box-shadow: var(--a4nth-shadow);
}

.a4nth-steps {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.a4nth-steps li {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 72px;
	padding: 12px;
	border-radius: 8px;
	background: color-mix(in srgb, var(--a4nth-panel-2) 80%, transparent);
	border: 1px solid var(--a4nth-line);
}

.a4nth-steps strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--a4nth-purple), var(--a4nth-red));
	font-size: 16px;
	line-height: 1;
}

.a4nth-steps span {
	color: var(--a4nth-muted);
	font-size: 15px;
	line-height: 1.5;
}

.a4nth-benefits,
.a4nth-faq {
	margin-top: 34px;
}

.a4nth-benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.a4nth-benefit {
	min-width: 0;
	padding: 20px;
	border-radius: 8px;
	background: color-mix(in srgb, var(--a4nth-panel) 86%, transparent);
	border: 1px solid var(--a4nth-line);
}

.a4nth-benefit svg {
	width: 28px;
	height: 28px;
	color: var(--a4nth-orange);
}

.a4nth-benefit h3 {
	margin: 14px 0 0;
	color: var(--a4nth-ink);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.a4nth-benefit p {
	margin: 9px 0 0;
	color: var(--a4nth-muted);
	font-size: 14px;
	line-height: 1.5;
}

.a4nth-faq__list {
	display: grid;
	gap: 10px;
}

.a4nth-faq__item {
	border-radius: 8px;
	background: color-mix(in srgb, var(--a4nth-panel) 88%, transparent);
	border: 1px solid var(--a4nth-line);
	overflow: hidden;
}

.a4nth-faq__item summary {
	min-height: 58px;
	padding: 18px 20px;
	color: var(--a4nth-ink);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.35;
	cursor: pointer;
}

.a4nth-faq__item p {
	margin: 0;
	padding: 0 20px 20px;
	color: var(--a4nth-muted);
	font-size: 15px;
	line-height: 1.58;
}

.a4nth-final {
	align-items: center;
}

.a4nth-final .a4nth-button {
	justify-self: end;
	min-width: 230px;
}

@media (max-width: 1180px) {
	.a4nth-benefit-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.a4nth-hero,
	.a4nth-flow,
	.a4nth-final {
		grid-template-columns: 1fr;
	}

	.a4nth-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.a4nth-final .a4nth-button {
		justify-self: start;
	}
}

@media (max-width: 640px) {
	.a4nth-shell {
		margin-inline: 0;
		width: 100%;
		max-width: 100%;
		border-left: 0;
		border-right: 0;
		border-radius: 0;
		padding: 22px 16px;
	}

	.a4nth-hero {
		min-height: 0;
	}

	.a4nth-hero h1 {
		font-size: clamp(40px, 14vw, 56px);
	}

	.a4nth-hero__lead {
		font-size: 16px;
	}

	.a4nth-hero__actions,
	.a4nth-toolbar {
		display: grid;
		grid-template-columns: 1fr;
	}

	.a4nth-button,
	.a4nth-filter {
		width: 100%;
	}

	.a4nth-card__link {
		width: auto;
		margin-inline: 18px;
		padding-inline: 16px;
	}

	.a4nth-hero__frame {
		min-height: 300px;
	}

	.a4nth-grid,
	.a4nth-benefit-grid {
		grid-template-columns: 1fr;
	}

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

	.a4nth-flow,
	.a4nth-final {
		padding: 20px;
	}

	.a4nth-steps li {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.a4nth-steps strong {
		width: 44px;
		height: 44px;
	}

	.theme-switch-box-wrap {
		right: 2px !important;
		right: max(2px, env(safe-area-inset-right)) !important;
		max-width: calc(100vw - 4px);
		transform: scale(0.82);
		transform-origin: right center;
	}

	.theme-switch-box {
		gap: 5px;
		padding: 6px 4px;
	}

	.theme-switch-box__label {
		width: 16px;
		height: 32px;
	}

	.theme-switch-box__main::before {
		width: 10px;
		height: 10px;
	}

	.theme-switch-box__input:checked + .theme-switch-box__main::before {
		top: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.a4nth-button,
	.a4nth-card,
	.a4nth-card__link,
	.a4nth-filter {
		transition: none;
	}

	.a4nth-button:hover,
	.a4nth-button:focus-visible,
	.a4nth-card:hover,
	.a4nth-card__link:hover,
	.a4nth-card__link:focus-visible {
		transform: none;
	}
}
