body.challenges {
	--ch-wrapper-max: 1136px;
	--ch-gutter: 14px;
	--ch-font-body:
		"Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--ch-bg: #0a0806;
	--ch-text: #f6efe6;
	--ch-text-muted: #b7ac9d;
	--ch-accent: #f3981f;
	--ch-cta-shadow: 0 10px 30px -8px rgba(255, 138, 30, 0.45);
	--ch-btn-gradient: linear-gradient(
		180deg,
		#ffc36a 0%,
		#ff8a1e 60%,
		#f37500 100%
	);

	margin: 0;
	background: var(--ch-bg);
	color: var(--ch-text);
	font-family: var(--ch-font-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.challenges ::selection {
	background: var(--ch-accent);
	color: var(--ch-bg);
}

body.challenges ::-moz-selection {
	background: var(--ch-accent);
	color: var(--ch-bg);
}

body.challenges .challenges-lp *,
body.challenges .challenges-lp *::before,
body.challenges .challenges-lp *::after {
	box-sizing: border-box;
}

body.challenges .challenges-lp img {
	max-width: 100%;
	height: auto;
	display: block;
}

:where(body.challenges .challenges-lp) a {
	color: inherit;
	text-decoration: none;
}

:where(body.challenges .challenges-lp) h1,
:where(body.challenges .challenges-lp) h2,
:where(body.challenges .challenges-lp) h3 {
	font-family: var(--ch-font-body);
	margin: 0;
	line-height: 1.05;
}

body.challenges .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.challenges .wrapper {
	width: 100%;
	max-width: calc(var(--ch-wrapper-max) + var(--ch-gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--ch-gutter);
}

body.challenges .ch-section {
	padding-block: 50px;
}

body.challenges .ch-section[id],
body.challenges .ch-quiz[id] {
	scroll-margin-top: 94px;
}

body.challenges #primary > .ch-section:last-child {
	padding-bottom: 100px;
}

body.challenges .ch-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: 10px;
	font-family: var(--ch-font-body);
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

body.challenges .ch-btn--primary {
	background: var(--ch-btn-gradient);
	box-shadow: var(--ch-cta-shadow);
	color: #1a0f02;
}

body.challenges .ch-btn--primary:hover,
body.challenges .ch-btn--primary:focus-visible {
	box-shadow: 0 2px 24px 0 rgba(243, 152, 31, 0.5);
	transform: translateY(-1px);
}

body.challenges .ch-btn--ghost {
	background: #271809;
	border: 1px solid #332712;
	color: var(--ch-text);
}

body.challenges .ch-btn--ghost:hover,
body.challenges .ch-btn--ghost:focus-visible {
	border-color: #4a3a1c;
	background: #2f1e0c;
	transform: translateY(-1px);
}

body.challenges .ch-btn--lg {
	padding: 18px 32px;
	font-size: 16px;
}

body.challenges .ch-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 8px 20px;
	border-radius: 100px;
	background: #1e1811;
	color: var(--ch-accent);
	font-size: 8px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 2.16px;
	text-transform: uppercase;
	white-space: nowrap;
}

@media (min-width: 992px) {
	body.challenges .ch-badge {
		font-size: 12px;
	}
}

body.challenges .ch-section-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
	text-align: center;
}

body.challenges .ch-section-head__title {
	max-width: 556px;
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
}

body.challenges .ch-section-head__lead {
	max-width: 556px;
	margin: 0;
	color: var(--ch-text-muted);
	font-size: 16px;
	line-height: 1.3;
}

body.challenges .ch-section-head__lead a {
	color: var(--ch-accent);
	text-decoration: underline;
}

@media (min-width: 992px) {
	body.challenges .ch-section-head {
		gap: 20px;
	}

	body.challenges .ch-section-head__title {
		font-size: 44px;
	}

	body.challenges .ch-section-head__lead {
		font-size: 18px;
	}
}

body.challenges .ch-accent {
	background: linear-gradient(90deg, #ffc271 0%, #ff9242 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

body.challenges #page {
	position: relative;
}

body.challenges #primary {
	position: relative;
	z-index: 1;
}

body.challenges .ch-bg {
	position: absolute;
	inset: 0 0 auto;
	height: 975px;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}

body.challenges .ch-bg__strip {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background: linear-gradient(
		180deg,
		rgba(76, 45, 3, 0.74) 0%,
		rgba(76, 45, 3, 0) 100%
	);
}

body.challenges .ch-bg__glow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 975px;
	opacity: 0.12;
}

body.challenges .ch-bg__blob {
	position: absolute;
	border-radius: 50%;
}

body.challenges .ch-bg__blob--1 {
	left: calc(50% - 269px);
	top: 146px;
	width: 258px;
	height: 569px;
	background: radial-gradient(
		closest-side,
		rgba(255, 191, 0, 0.8),
		rgba(255, 191, 0, 0)
	);
}

body.challenges .ch-bg__blob--2 {
	display: none;
}

body.challenges .ch-bg__blob--3 {
	left: calc(50% - 30px);
	top: -100px;
	width: 466px;
	height: 647px;
	background: radial-gradient(
		closest-side,
		rgba(217, 108, 0, 0.3),
		rgba(217, 108, 0, 0)
	);
}

@media (min-width: 992px) {
	body.challenges .ch-bg__glow {
		top: 43px;
		height: 932px;
	}

	body.challenges .ch-bg__blob {
		filter: blur(170px);
	}

	body.challenges .ch-bg__blob--1 {
		left: calc(50% - 890px);
		top: 369px;
		width: 703px;
		height: 233px;
		background: rgba(255, 191, 0, 0.8);
	}

	body.challenges .ch-bg__blob--2 {
		display: block;
		left: calc(50% - 352px);
		top: 804px;
		width: 703px;
		height: 128px;
		background: rgba(255, 191, 0, 0.3);
	}

	body.challenges .ch-bg__blob--3 {
		left: calc(50% - 116px);
		top: -45px;
		width: 1056px;
		height: 647px;
		background: rgba(217, 108, 0, 0.3);
	}
}

body.challenges .ch-hero {
	padding-block: 42px 40px;
	overflow: hidden;
}

body.challenges .ch-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 42px;
}

body.challenges .ch-hero__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

body.challenges .ch-hero__title {
	margin: 22px 0 0;
	font-size: clamp(34px, 11.5vw, 44px);
	font-weight: 600;
	line-height: 1;
}

body.challenges .ch-hero__lead {
	margin: 22px 0 0;
	color: var(--ch-text-muted);
	font-size: 18px;
	line-height: 1.3;
}

body.challenges .ch-hero__lead strong {
	color: var(--ch-text);
	font-weight: 400;
}

body.challenges .ch-hero__actions {
	display: flex;
	gap: 11px;
	align-items: center;
	width: 100%;
	margin-top: 20px;
}

body.challenges .ch-hero__actions .ch-btn {
	padding: 16px 12px;
	font-size: 14px;
}

body.challenges .ch-hero__actions .ch-btn--primary {
	flex: 1 1 auto;
}

body.challenges .ch-hero .ts-proof {
	margin-top: 22px;
}

body.challenges .ch-hero .ts-proof__partner {
	gap: 7.2px;
}

body.challenges .ch-hero .ts-proof__partner-text {
	gap: 5.76px;
	line-height: 1;
	text-align: left;
}

body.challenges .ch-hero .ts-proof__partner-label {
	font-size: 14.4px;
}

body.challenges .ch-hero .ts-proof__partner-text strong {
	font-size: 17.28px;
	font-weight: 400;
}

body.challenges .ch-routes {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.challenges .ch-route {
	display: flex;
	gap: 16px;
	align-items: stretch;
	padding: 22px 18px;
	border: 1px solid #37322d;
	border-radius: 12px;
	background:
		radial-gradient(
			104.5% 159.5% at 110.6% -9.8%,
			rgba(243, 152, 31, 0.2) 0%,
			rgba(243, 152, 31, 0) 100%
		),
		#140d06;
	overflow: hidden;
}

body.challenges .ch-route__main {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1 1 auto;
	min-width: 0;
}

body.challenges .ch-route__head {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

body.challenges .ch-route__name {
	color: #ffb24d;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
}

body.challenges .ch-route__tag {
	padding: 1px 9px;
	border-radius: 99px;
	background: rgba(95, 214, 147, 0.14);
	color: #5fd693;
	font-size: 10px;
	font-weight: 700;
	line-height: 12.08px;
	text-transform: uppercase;
	white-space: nowrap;
}

body.challenges .ch-route__desc {
	margin: 0;
	color: var(--ch-text-muted);
	font-size: 12px;
	line-height: 1.3;
}

body.challenges .ch-route__price {
	display: flex;
	flex: none;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2px;
	text-align: right;
}

body.challenges .ch-route__from {
	color: var(--ch-text-muted);
	font-size: 12px;
	line-height: 1;
}

body.challenges .ch-route__price strong {
	color: #ffb24d;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

body.challenges .ch-hero__checks {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	justify-content: center;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	color: #5fd693;
	font-size: clamp(10px, 2.8vw, 12px);
	line-height: 1;
}

body.challenges .ch-hero__checks li {
	display: flex;
	gap: 4px;
	align-items: center;
	white-space: nowrap;
}

body.challenges .ch-hero__checks strong {
	font-weight: 600;
}

body.challenges .ch-hero__tick {
	color: #2c864e;
}

@media (min-width: 992px) {
	body.challenges .ch-hero {
		padding-block: 66px 64px;
	}

	body.challenges .ch-hero__grid {
		grid-template-columns: minmax(0, 652px) minmax(0, 426px);
		justify-content: space-between;
		align-items: center;
		gap: 58px;
	}

	body.challenges .ch-hero__intro {
		align-items: flex-start;
		text-align: left;
	}

	body.challenges .ch-hero__title {
		margin-top: 13px;
		font-size: 64px;
	}

	body.challenges .ch-hero__lead {
		margin-top: 13px;
		font-size: 20px;
	}

	body.challenges .ch-hero__actions {
		width: auto;
	}

	body.challenges .ch-hero__actions .ch-btn {
		padding: 20px 48px;
		font-size: 16px;
	}

	body.challenges .ch-hero__actions .ch-btn--primary {
		flex: none;
		padding-inline: 48px 38px;
	}

	body.challenges .ch-hero .ts-proof {
		flex-direction: row;
		justify-content: flex-start;
		gap: 7.2px;
		margin-top: 37px;
	}

	body.challenges .ch-routes {
		gap: 18px;
	}

	body.challenges .ch-route {
		padding: 22px;
		border-radius: 20px;
	}

	body.challenges .ch-route__desc {
		font-size: 14px;
	}

	body.challenges .ch-hero__checks {
		justify-content: flex-start;
	}
}

body.challenges .ch-stats__inner,
body.challenges .ch-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

body.challenges .ch-stats .ts-logos {
	--ts-logos-color: var(--ch-text-muted);
}

body.challenges .ch-proof {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	width: 100%;
}

body.challenges .ch-proof__line {
	width: 147px;
	height: 2px;
	border-radius: 1px;
	background: #1e1811;
}

body.challenges .ch-stats .ch-proof__line {
	display: none;
}

@media (min-width: 992px) {
	body.challenges .ch-stats__inner {
		gap: 65px;
	}

	body.challenges .ch-stats .ch-proof {
		display: flex;
	}
}

body.challenges .ch-model__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

body.challenges .ch-model .ch-section-head__lead {
	font-size: 18px;
}

body.challenges .ch-model__body,
body.challenges .ch-rules__body {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

body.challenges .ch-steps {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.challenges .ch-step {
	display: flex;
	flex-direction: column;
	padding: 24px 22px;
	border: 1px solid rgba(255, 170, 60, 0.1);
	border-radius: 18px;
	background: linear-gradient(
		165deg,
		rgba(28, 21, 13, 0.7) 0%,
		rgba(22, 17, 11, 0.7) 100%
	);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

body.challenges .ch-step__num {
	color: var(--ch-text);
	font-size: 14px;
	line-height: 1.5;
}

body.challenges .ch-step__title {
	margin: 6px 0 0;
	color: var(--ch-accent);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
}

body.challenges .ch-step__text {
	margin: 18px 0 0;
	color: var(--ch-text-muted);
	font-size: 14px;
	line-height: 1.5;
}

body.challenges .ch-step__text strong {
	color: var(--ch-text);
	font-weight: 400;
}

body.challenges .ch-model__note {
	margin: 0;
	color: var(--ch-text-muted);
	font-size: 14px;
	line-height: 1.5;
}

body.challenges .ch-model__note-ok {
	display: block;
	color: #5fd693;
}

body.challenges .ch-model__note-rest {
	display: block;
	padding-left: 15px;
}

body.challenges .ch-model__note a {
	color: var(--ch-accent);
	text-decoration: underline;
}

@media (min-width: 992px) {
	body.challenges .ch-model__inner {
		gap: 42px;
	}

	body.challenges .ch-model__body {
		gap: 32px;
	}

	body.challenges .ch-steps {
		flex-direction: row;
		align-items: stretch;
		gap: 46px;
	}

	body.challenges .ch-step {
		flex: 1 1 0;
		min-width: 0;
		padding: 24px 29px;
	}

	body.challenges .ch-model__note {
		line-height: 1.3;
		text-align: center;
	}

	body.challenges .ch-model__note-ok {
		display: inline;
		margin-right: 4px;
	}

	body.challenges .ch-model__note-rest {
		display: inline;
		padding-left: 0;
	}
}

body.challenges .ch-picker__inner,
body.challenges .ch-rules__inner,
body.challenges .ch-pricing__inner,
body.challenges .ch-faq__inner {
	display: flex;
	flex-direction: column;
	gap: 42px;
}

body.challenges .ch-picker .ch-section-head__title em {
	font-style: italic;
}

body.challenges .ch-plans {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

body.challenges .ch-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 28px 20px;
	border: 1px solid #39230e;
	border-radius: 18px;
	background: #141414;
}

body.challenges .ch-plan__badge {
	display: none;
	position: absolute;
	top: 0;
	left: 24px;
	z-index: 1;
	padding: 8px 16px;
	border-radius: 99px;
	background: #f2a64e;
	color: #1a0f02;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateY(-50%);
}

body.challenges .ch-plan.is-recommended .ch-plan__badge {
	display: inline-flex;
}

body.challenges .ch-plan.is-recommended {
	border-color: var(--ch-accent);
	box-shadow:
		0 0 0 1px rgba(243, 152, 31, 0.35),
		0 18px 44px -24px rgba(243, 152, 31, 0.65);
}

body.challenges .ch-plan__head {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

body.challenges .ch-plan__name {
	margin: 0;
	color: var(--ch-text);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
}

body.challenges .ch-plan__tagline {
	margin: 0;
	color: var(--ch-accent);
	font-size: 14px;
	line-height: 1.3;
}

body.challenges .ch-plan__intro {
	margin: 22px 0 0;
	color: var(--ch-text-muted);
	font-size: 14px;
	line-height: 1.6;
}

body.challenges .ch-plan__specs {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 22px 0 0;
	padding: 22px 0 0;
	border-top: 1px solid #2a2622;
}

body.challenges .ch-plan__spec {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	justify-content: space-between;
	padding-block: 8px;
	font-size: 14px;
	line-height: 1.3;
}

body.challenges .ch-plan__spec dt {
	color: var(--ch-text-muted);
}

body.challenges .ch-plan__value {
	margin: 0;
	color: var(--ch-text);
	font-weight: 600;
	white-space: nowrap;
}

body.challenges .ch-plan__value--good {
	color: #5fd693;
}

body.challenges .ch-plan__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

body.challenges .ch-plan__tags li {
	padding: 6px 12px;
	border: 1px solid rgba(95, 214, 147, 0.25);
	border-radius: 99px;
	background: rgba(95, 214, 147, 0.14);
	color: #5fd693;
	font-size: clamp(10px, 2.8vw, 12px);
	font-weight: 500;
	line-height: 1;
}

body.challenges .ch-plan__foot {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 48px;
}

body.challenges .ch-plan__price {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 0;
	color: var(--ch-text-muted);
	font-size: 14px;
	line-height: 1;
}

body.challenges .ch-plan__now {
	color: #ffb24d;
	font-size: 18px;
	font-weight: 700;
}

body.challenges .ch-plan__cta {
	width: 100%;
	padding: 16px 12px;
	font-size: 16px;
}

body.challenges .ch-quiz {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 28px 24px;
	border: 1px solid #271d10;
	border-radius: 16px;
	background: #0f0d0b;
}

body.challenges .ch-quiz__head,
body.challenges .ch-quiz__question {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.challenges .ch-quiz__title {
	margin: 0;
	color: var(--ch-text);
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
}

body.challenges .ch-quiz__sub {
	margin: 0;
	color: var(--ch-text-muted);
	font-size: 14px;
	line-height: 1;
}

body.challenges .ch-quiz__label {
	display: flex;
	gap: 10px;
	margin: 0;
	color: var(--ch-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

body.challenges .ch-quiz__num {
	flex: none;
}

body.challenges .ch-quiz__answers {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}

body.challenges .ch-quiz__answer {
	padding: 10px 15px;
	border: 1px solid rgba(246, 239, 230, 0.16);
	border-radius: 99px;
	background: var(--ch-bg);
	color: var(--ch-text-muted);
	font-family: var(--ch-font-body);
	font-size: 14px;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		color 0.2s ease;
}

body.challenges .ch-quiz__answer:hover,
body.challenges .ch-quiz__answer:focus-visible {
	border-color: rgba(246, 239, 230, 0.32);
	color: var(--ch-text);
}

body.challenges .ch-quiz__answer.is-selected {
	border-color: rgba(243, 152, 31, 0.55);
	background: #1a120a;
	color: var(--ch-text);
}

@media (min-width: 992px) {
	body.challenges .ch-picker__inner {
		gap: 37px;
	}

	body.challenges .ch-plans {
		flex-direction: row;
		align-items: flex-start;
	}

	body.challenges .ch-plan {
		flex: 1 1 0;
		min-width: 0;
	}

	body.challenges .ch-quiz {
		gap: 22px;
		padding: 28px 34px;
	}

	body.challenges .ch-quiz__head {
		flex-direction: row;
		gap: 22px;
		align-items: center;
	}

	body.challenges .ch-quiz__question {
		gap: 10px;
	}

	body.challenges .ch-quiz__answers {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
}

body.challenges .ch-rules__scroll {
	width: 100%;
	overflow-x: auto;
	border: 1px solid #2a2622;
	border-radius: 10px;
	-webkit-overflow-scrolling: touch;
}

body.challenges .ch-rules__table {
	width: 100%;
	min-width: 640px;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--ch-bg);
	font-size: 14px;
	line-height: 1.3;
	text-align: left;
}

body.challenges .ch-rules__table th,
body.challenges .ch-rules__table td {
	padding: 17px 16px;
	border-top: 1px solid #2a2622;
	border-right: 1px solid #2a2622;
	background: var(--ch-bg);
	font-weight: 400;
	vertical-align: middle;
}

body.challenges .ch-rules__table tr > *:last-child {
	border-right: 0;
}

body.challenges .ch-rules__table thead th {
	padding: 15px 16px;
	border-top: 0;
	background: #1c150d;
	color: var(--ch-text-muted);
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
}

body.challenges .ch-rules__table tbody th,
body.challenges .ch-rules__table thead th:first-child {
	position: sticky;
	left: 0;
	z-index: 1;
	width: 98px;
	padding-inline: 8px;
	color: var(--ch-text-muted);
	font-weight: 600;
}

body.challenges .ch-rules__table thead th:first-child {
	z-index: 2;
}

body.challenges .ch-rules__table td {
	color: var(--ch-text);
}

body.challenges .ch-rules__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

body.challenges .ch-rules__info {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0;
	border: 0;
	background: none;
	line-height: 0;
	cursor: pointer;
}

body.challenges .ch-rules__tip {
	position: absolute;
	top: 50%;
	left: calc(100% + 9px);
	z-index: 5;
	width: max-content;
	max-width: 260px;
	padding: 9px 11px;
	border: 1px solid #39230e;
	border-radius: 8px;
	background: #1a130b;
	color: var(--ch-text);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.35;
	text-align: left;
	text-transform: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-50%) translateX(-4px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

body.challenges .ch-rules__tip::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-right-color: #1a130b;
}

body.challenges .ch-rules__info:hover .ch-rules__tip,
body.challenges .ch-rules__info:focus-visible .ch-rules__tip,
body.challenges .ch-rules__info.is-open .ch-rules__tip {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

body.challenges .ch-rules__row--medium td {
	font-weight: 500;
}

body.challenges .ch-rules__table .ch-rules__value--good {
	color: #5fd693;
}

body.challenges .ch-rules__note {
	margin: 0;
	color: var(--ch-text-muted);
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
}

@media (min-width: 992px) {
	body.challenges .ch-rules__table {
		min-width: 0;
	}

	body.challenges .ch-rules__table tbody th,
	body.challenges .ch-rules__table thead th:first-child {
		width: auto;
		padding-inline: 16px;
	}
}

body.challenges .ch-pricing__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	width: 100%;
}

body.challenges .ch-faq .ts-faq {
	width: 100%;
}

body.challenges .ch-cta__row {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

body.challenges .ch-cta__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 12px;
	border-radius: 26px;
	background: linear-gradient(
		0deg,
		rgba(20, 19, 19, 0.2) 0%,
		rgba(20, 19, 19, 0.4) 11%,
		#2b1f16 100%
	);
	box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
	text-align: center;
}

body.challenges .ch-cta__panel::before,
body.challenges .ch-cta__discord::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(
		180deg,
		#f3981f 0%,
		rgba(116, 116, 116, 0.2) 50%,
		rgba(255, 255, 255, 0.2) 100%
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask-composite: exclude;
	pointer-events: none;
}

body.challenges .ch-cta__title {
	margin: 0;
	max-width: 648px;
	color: #f5f0e6;
	font-size: 34px;
	font-weight: 500;
	line-height: 1;
}

body.challenges .ch-cta__lead {
	margin: 30px 0 0;
	max-width: 614px;
	color: #a8a8a8;
	font-size: 16px;
	line-height: 1.2;
}

body.challenges .ch-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 11px;
	align-items: center;
	width: 100%;
	max-width: 262px;
	margin-top: 30px;
}

body.challenges .ch-cta__actions .ch-btn {
	width: 100%;
	padding: 20px 12px;
}

body.challenges .ch-cta__note {
	margin: 30px 0 0;
	color: var(--ch-text-muted);
	font-size: 14px;
	line-height: 1.2;
}

body.challenges .ch-cta__note-btn {
	padding: 0;
	border: 0;
	background: none;
	color: #ff9242;
	font: inherit;
	text-decoration: underline;
	cursor: pointer;
}

body.challenges .ch-cta__note-btn:hover,
body.challenges .ch-cta__note-btn:focus-visible {
	color: #ffb266;
}

body.challenges .ch-cta__discord {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 26px;
	background:
		radial-gradient(
			120% 60% at 50% 100%,
			rgba(243, 152, 31, 0.1) 0%,
			rgba(243, 152, 31, 0) 100%
		),
		#0f0d0b;
}

body.challenges .ch-cta__discord-media {
	position: relative;
	flex: none;
	aspect-ratio: 360 / 220;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
	pointer-events: none;
}

body.challenges .ch-cta__discord-logo {
	position: absolute;
	top: 46%;
	left: 50%;
	width: 42%;
	max-width: 240px;
	height: auto;
	transform: translate(-50%, -50%);
}

body.challenges .ch-cta__discord-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	margin-top: -26px;
	padding: 0 14px 26px;
	text-align: center;
}

body.challenges .ch-cta__discord-title {
	margin: 0;
	color: var(--ch-text);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

body.challenges .ch-cta__discord-sub {
	margin: 0;
	color: var(--ch-text-muted);
	font-size: 16px;
	line-height: 1.3;
}

body.challenges .ch-cta__discord-link {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	justify-content: center;
	padding: 15px 29px;
	border: 1px solid #332712;
	border-radius: 12px;
	background: #271809;
	color: #ffb24d;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	transition:
		border-color 0.2s ease,
		background 0.2s ease;
}

body.challenges .ch-cta__discord-link:hover,
body.challenges .ch-cta__discord-link:focus-visible {
	border-color: #4a3a1c;
	background: #2f1e0c;
}

body.challenges .ch-cta .ch-proof {
	display: flex;
}

@media (min-width: 992px) {
	body.challenges .ch-cta__row {
		flex-direction: row;
		align-items: stretch;
		gap: 17px;
	}

	body.challenges .ch-cta__panel {
		flex: 1 1 798px;
		justify-content: center;
		min-height: 472px;
		padding: 56px;
	}

	body.challenges .ch-cta__title {
		font-size: 44px;
	}

	body.challenges .ch-cta__lead {
		font-size: 18px;
	}

	body.challenges .ch-cta__actions {
		flex-direction: row;
		max-width: none;
		width: auto;
	}

	body.challenges .ch-cta__actions .ch-btn {
		width: auto;
	}

	body.challenges .ch-cta__actions .ch-btn--primary {
		padding: 20px 38px 20px 48px;
	}

	body.challenges .ch-cta__actions .ch-btn--ghost {
		padding: 20px 48px;
	}

	body.challenges .ch-cta__discord {
		flex: 0 0 321px;
	}

	body.challenges .ch-cta__discord-media {
		aspect-ratio: 321 / 227;
	}

	body.challenges .ch-cta__discord-body {
		padding: 0 30px 30px;
	}

	body.challenges .ch-cta__discord-link {
		gap: 6px;
		padding: 15px 12px;
		font-size: 15px;
	}

	body.challenges .ch-cta .ch-proof {
		display: none;
	}
}

body.challenges.ch-anim-ready .ch-section:not(.ch-hero) > .wrapper {
	opacity: 0;
	transition: opacity 0.7s ease;
}

body.challenges.ch-anim-ready .ch-section.is-inview > .wrapper {
	opacity: 1;
}

body.challenges .ch-route,
body.challenges .ch-step,
body.challenges .ch-plan {
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

body.challenges .ch-rules__table tbody th,
body.challenges .ch-rules__table tbody td {
	transition: background-color 0.25s ease;
}

@media (hover: hover) {
	body.challenges .ch-route:hover,
	body.challenges .ch-step:hover {
		border-color: rgba(255, 170, 60, 0.4);
		box-shadow: inset 0 0 40px -8px rgba(243, 152, 31, 0.22);
	}

	body.challenges .ch-plan:hover:not(.is-recommended) {
		border-color: rgba(255, 170, 60, 0.45);
		box-shadow: inset 0 0 60px -20px rgba(243, 152, 31, 0.28);
	}

	body.challenges .ch-rules__table tbody tr:hover th,
	body.challenges .ch-rules__table tbody tr:hover td {
		background: #100e0c;
	}
}
