@font-face {
	font-family: 'Outfit';
	src: url('../assets/outfit-400.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit';
	src: url('../assets/outfit-500.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit';
	src: url('../assets/outfit-600.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Syne';
	src: url('../assets/syne-500.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg: #050607;
	--surface: #09090a;
	--white: #f5f6ff;
	--text: rgba(188, 187, 218, 0.5);
	--text-strong: rgba(188, 187, 218, 0.75);
	--line: rgba(188, 187, 218, 0.1);
	--blue: #3757ff;
	--blue-10: rgba(55, 87, 255, 0.1);
	--blue-5: rgba(55, 87, 255, 0.05);
	--ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-drift: cubic-bezier(0.45, 0, 0.55, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 68px;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--white);
	font-family: 'Outfit', Arial, sans-serif;
	font-size: 16px;
	overflow-x: hidden;
}

button,
a {
	color: inherit;
	font: inherit;
}

button {
	border: 0;
}

a {
	text-decoration: none;
}

p,
h1,
h2,
h3 {
	margin: 0;
}

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

.hero {
	height: 1000px;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	background:
		radial-gradient(
			circle at 73% 50%,
			rgba(55, 17, 106, 0.08),
			transparent 28%
		),
		var(--bg);
}

.navbar {
	height: 68px;
	position: fixed;
	z-index: 80;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--line);
	background: rgba(5, 6, 7, 0.75);
	backdrop-filter: blur(8px);
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
}

.brand-mark img {
	width: 48px;
	height: 48px;
}

.nav-links {
	height: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 60px;
}

.nav-links a {
	color: var(--text);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	transition: color 180ms ease;
	white-space: nowrap;
}

.nav-links a:hover {
	color: var(--white);
}

.nav-links span {
	width: 1px;
	height: 100%;
	background: var(--line);
}

.button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
	font-weight: 500;
	transition:
		border-color 360ms var(--ease-fluid),
		background 360ms var(--ease-fluid),
		color 360ms var(--ease-fluid);
}

.button-primary {
	position: relative;
	justify-content: flex-start;
	overflow: hidden;
	background: var(--blue-5);
	border: 1px solid var(--blue-5);
}

.button-primary span {
	position: relative;
	z-index: 2;
	padding: 0 14px;
	white-space: nowrap;
}

.button-primary b {
	position: absolute;
	z-index: 1;
	top: 1px;
	right: 1px;
	width: 44px;
	height: 44px;
	padding-right: 14px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: var(--blue);
	background: var(--blue-5);
	font-size: 21px;
	font-weight: 400;
	transition:
		width 480ms var(--ease-fluid),
		color 360ms var(--ease-fluid),
		background-color 360ms var(--ease-fluid);
}

.button-primary svg path {
	fill: currentColor !important;
}

.button-primary:focus-visible {
	border: 2px solid rgba(55, 87, 255, 0.3);
	background: rgba(55, 87, 255, 0.15);
	outline: 0;
}

.button-primary:focus-visible b {
	top: 0;
	right: 0;
	width: 77.5px;
	color: #db96ff;
	background: rgba(219, 150, 255, 0.05);
}

.button-primary:hover {
	color: #db96ff;
	border: 2px solid rgba(219, 150, 255, 0.3);
	background: var(--blue-5);
}

.button-primary:hover b {
	top: 0;
	right: 0;
	width: 100%;
	color: #db96ff;
	background: rgba(219, 150, 255, 0.05);
}

.button-secondary:hover {
	color: var(--white);
	border-color: rgba(55, 87, 255, 0.35);
	background: rgba(55, 87, 255, 0.12);
}

.nav-button {
	width: 159px;
	flex: 0 0 159px;
}

.menu-button {
	display: none;
	width: 44px;
	height: 44px;
	background: var(--blue-5);
	padding: 13px 10px;
}

.menu-button i {
	display: block;
	width: 22px;
	height: 1px;
	margin: 5px auto;
	background: var(--text-strong);
}

.hero-inner {
	position: relative;
	width: min(1272px, calc(100% - 48px));
	height: calc(100% - 68px);
	margin: 68px auto 0;
}

.hero-copy {
	position: absolute;
	z-index: 4;
	top: 253px;
	left: 0;
	width: 860px;
}

.eyebrow {
	color: var(--blue);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 3.6px;
	text-transform: uppercase;
}

.hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.hero-eyebrow img {
	width: 24px;
	height: 24px;
}

.hero-copy h1 {
	font-size: 48px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -1.1px;
}

.hero-copy > p {
	width: 800px;
	margin-top: 16px;
	color: var(--text);
	font-size: 24px;
	line-height: 1.4;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-top: 48px;
}

.hero-actions .button-primary {
	width: 159px;
}

.button-secondary {
	min-width: 133px;
	padding: 0 24px;
	border: 1px solid var(--blue-5);
	background: var(--blue-5);
}

.hero-visual {
	position: absolute;
	z-index: 3;
	top: 144px;
	right: -2px;
	width: 520px;
	height: 650px;
}

.hero-avatar {
	position: absolute;
	z-index: 3;
	top: -66px;
	left: -168px;
	width: 834px;
	height: 834px;
	object-fit: cover;
	pointer-events: none;
}

.hero-ring {
	position: absolute;
	z-index: 2;
	top: 335px;
	left: 33px;
	width: 479px;
	height: 322px;
	mix-blend-mode: plus-lighter;
}

.hero-halo {
	position: absolute;
	top: 240px;
	left: 50%;
	width: 540px;
	height: 360px;
	transform: translateX(-50%);
	background: radial-gradient(
		ellipse,
		rgba(122, 30, 255, 0.18),
		transparent 70%
	);
	filter: blur(20px);
}

.method-card {
	position: absolute;
	z-index: 6;
	width: 274px;
	height: 194px;
	padding: 16px 14px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid var(--line);
	background: rgba(5, 6, 7, 0.9);
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.method-card strong {
	margin-top: 18px;
	color: var(--text-strong);
	font-size: 18px;
	font-weight: 500;
}

.method-card small {
	margin-top: 12px;
	color: var(--text);
	font-size: 14px;
}

.method-card a {
	width: 100%;
	min-height: 52px;
	margin-top: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 1px solid var(--line);
	font-size: 16px;
}

.method-icon,
.tool-icon,
.metric-icon {
	display: grid;
	place-items: center;
	color: var(--blue);
	border: 1px solid rgba(202, 199, 255, 0.05);
	background: var(--blue-10);
}

.method-icon {
	width: 42px;
	height: 42px;
}

.method-card-front {
	left: -18px;
	bottom: -1px;
	width: 249px;
	height: 183px;
	gap: 16px;
	transform: rotate(6deg);
	overflow: hidden;
	isolation: isolate;
	border-color: rgba(188, 187, 218, 0.1);
	background:
		linear-gradient(
			148deg,
			rgba(228, 234, 255, 0.055),
			rgba(245, 246, 255, 0.01) 34%,
			rgba(28, 22, 61, 0.12) 72%,
			rgba(55, 87, 255, 0.04)
		),
		rgba(9, 9, 10, 0.22);
	-webkit-backdrop-filter: blur(14px) saturate(0.72) contrast(1.04);
	backdrop-filter: blur(14px) saturate(0.72) contrast(1.04);
	box-shadow:
		inset 0 1px 0 rgba(245, 246, 255, 0.075),
		inset 0 -1px 0 rgba(55, 87, 255, 0.035),
		0 18px 44px rgba(0, 0, 0, 0.28);
	animation: method-card-drift 9s var(--ease-drift) infinite alternate;
	transition:
		height 480ms var(--ease-fluid),
		border-color 420ms var(--ease-fluid),
		background 520ms var(--ease-fluid);
	will-change: transform;
}

.method-card-front::before {
	content: '';
	position: absolute;
	z-index: 0;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		135deg,
		rgba(55, 87, 255, 0.045),
		transparent 42%,
		rgba(138, 56, 245, 0.035)
	);
}

.method-card-front > * {
	position: relative;
	z-index: 1;
}

.method-card-front strong {
	margin-top: 0;
	transition: color 420ms var(--ease-fluid);
}

.method-tutorial {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 80px;
	color: var(--blue);
	font-size: 16px;
	line-height: 1.2;
	text-align: center;
	opacity: 0;
	transform: translateY(-4px);
	transition:
		color 420ms var(--ease-fluid),
		opacity 360ms var(--ease-fluid),
		transform 480ms var(--ease-fluid);
}

.method-card-front a {
	min-height: 48px;
	flex: 0 0 48px;
	margin-top: auto;
	background: rgba(2, 3, 5, 0.62);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transition:
		border-color 420ms var(--ease-fluid),
		background-color 420ms var(--ease-fluid),
		color 420ms var(--ease-fluid);
}

.method-card-front:hover,
.method-card-front:focus-within {
	height: 217px;
	border-color: var(--blue-10);
	background:
		radial-gradient(
			ellipse at 74% 100%,
			rgba(103, 53, 255, 0.16),
			transparent 58%
		),
		linear-gradient(
			148deg,
			rgba(228, 234, 255, 0.065),
			rgba(245, 246, 255, 0.012) 34%,
			rgba(28, 22, 61, 0.16) 72%,
			rgba(55, 87, 255, 0.06)
		),
		rgba(9, 9, 10, 0.28);
}

.method-card-front:hover strong,
.method-card-front:focus-within strong {
	color: var(--white);
}

.method-card-front:hover .method-tutorial,
.method-card-front:focus-within .method-tutorial {
	opacity: 1;
	transform: translateY(0);
}

.method-card-front:hover a,
.method-card-front:focus-within a {
	color: var(--white);
	border-color: rgba(55, 87, 255, 0.2);
}

@keyframes method-card-drift {
	from {
		transform: translate3d(0, 0, 0) rotate(6deg);
	}

	to {
		transform: translate3d(2px, -5px, 0) rotate(5.4deg);
	}
}

.method-card-back {
	z-index: 1;
	right: -22px;
	top: 216px;
	transform: rotate(-5deg);
	opacity: 0.4;
}

.ticker {
	position: absolute;
	z-index: 8;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 54px;
	overflow: hidden;
	border-top: 1px solid rgba(188, 187, 218, 0.04);
}

.ticker-track {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0 48px;
	color: rgba(188, 187, 218, 0.1);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}

.ticker-group div {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 8px;
	padding: 0 40px;
	white-space: nowrap;
	border-left: 1px solid var(--line);
}

.section {
	position: relative;
	border: 1px solid var(--line);
	background: var(--bg);
	overflow: hidden;
}

.section-shell {
	position: relative;
	height: 100%;
	border-left: 1px solid rgba(188, 187, 218, 0.06);
	border-right: 1px solid rgba(188, 187, 218, 0.06);
}

.about {
	height: 1100px;
}

.about .section-shell {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	padding: 83px 0;
}

.video-stage {
	position: relative;
	width: 800px;
	height: 450px;
	flex: 0 0 450px;
	isolation: isolate;
}

.video {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--bg);
	cursor: pointer;
	transition:
		border-color 480ms var(--ease-fluid),
		background-color 480ms var(--ease-fluid),
		box-shadow 600ms var(--ease-fluid);
}

.video-background {
	position: absolute;
	z-index: 1;
	right: -44px;
	bottom: -38px;
	left: -44px;
	height: 104px;
	overflow: visible;
	pointer-events: none;
	opacity: 0;
	transition: opacity 580ms var(--ease-fluid);
}

.video-light {
	position: absolute;
	bottom: 0;
	height: 50px;
	border-radius: 50%;
	filter: blur(26px);
	transform: translateZ(0);
}

.video-light-blue {
	right: 4%;
	width: 68%;
	background: rgba(55, 87, 255, 0.48);
}

.video-light-purple {
	left: 10%;
	width: 54%;
	background: rgba(181, 80, 255, 0.44);
}

.video:hover,
.video:focus-visible {
	border-color: rgba(55, 87, 255, 0.2);
	outline: 0;
}

.video-stage:hover .video-background,
.video-stage:focus-within .video-background {
	opacity: 1;
}

.play {
	position: relative;
	z-index: 1;
	width: 64px;
	height: 64px;
	display: block;
	transition:
		filter 480ms var(--ease-fluid),
		transform 480ms var(--ease-fluid);
}

.video:hover .play,
.video:focus-visible .play {
	filter: drop-shadow(0 0 18px rgba(55, 87, 255, 0.28));
	transform: scale(1.035);
}

.play svg {
	display: block;
	width: 100%;
	height: 100%;
}

.video-modal {
	position: fixed;
	z-index: 100;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
}

.video-modal[hidden] {
	display: none;
}

.video-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
}

.video-modal-panel {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	border: 1px solid var(--line);
	background: var(--bg);
}

.video-modal-header {
	height: 60px;
	padding-left: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--line);
}

.video-modal-header h2 {
	color: var(--text-strong);
	font-size: 18px;
	font-weight: 500;
}

.video-modal-close {
	width: 60px;
	height: 60px;
	color: var(--text);
	border-left: 1px solid var(--line);
	background: transparent;
	font-size: 28px;
	cursor: pointer;
}

.video-player {
	display: block;
	width: 100%;
	max-height: calc(100vh - 160px);
	aspect-ratio: 16 / 9;
	background: #000;
}

.video-player[hidden] {
	display: none;
}

.video-empty {
	padding: 72px 24px;
	color: var(--text);
	font-size: 16px;
	text-align: center;
}

body.video-modal-open {
	overflow: hidden;
}

.section-heading {
	text-align: center;
}

.section-heading h2 {
	margin-top: 16px;
	color: var(--white);
	font-family: 'Syne', 'Outfit', sans-serif;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
}

.section-heading > p {
	margin: 16px auto 0;
	color: var(--text);
	font-size: 18px;
	line-height: 1.4;
}

.about-heading {
	width: 800px;
}

.about-copy {
	width: 616px;
	margin: 24px auto 0;
}

.about-copy p {
	margin-top: 24px;
	color: var(--text);
	font-size: 18px;
	line-height: 1.4;
}

.about-copy p:first-child {
	margin-top: 0;
}

.metrics {
	display: flex;
	gap: 40px;
	align-items: center;
}

.metric {
	display: flex;
	align-items: center;
	gap: 16px;
}

.metric-icon {
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
	font-size: 22px;
	transition:
		border-color 420ms var(--ease-fluid),
		background-color 420ms var(--ease-fluid);
}

.metric div {
	display: flex;
	flex-direction: column;
	color: var(--text);
	line-height: 1.4;
}

.metric strong {
	color: var(--text-strong);
	font-size: 24px;
	font-weight: 500;
	transition: color 360ms var(--ease-fluid);
}

.metric small {
	font-size: 16px;
	white-space: nowrap;
	transition: color 360ms var(--ease-fluid);
}

.metric:hover strong {
	color: rgba(245, 246, 255, 0.92);
}

.metric:hover small {
	color: rgba(188, 187, 218, 0.72);
}

.metric:hover .metric-icon {
	border-color: rgba(55, 87, 255, 0.14);
	background: rgba(55, 87, 255, 0.14);
}

.reviews {
	height: 1100px;
}

.reviews .section-shell,
.methods .section-shell {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 48px;
	padding: 96px 0;
}

.compact {
	width: 425px;
}

.compact > p {
	width: 373px;
}

.reviews-wall {
	position: relative;
	width: 1120px;
	height: 576px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
	border: 1px solid var(--line);
}

.reviews-wall::before,
.reviews-wall::after {
	content: '';
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	height: 70px;
	pointer-events: none;
}

.reviews-wall::before {
	top: 0;
	background: linear-gradient(var(--bg), transparent);
}

.reviews-wall::after {
	bottom: 0;
	background: linear-gradient(transparent, var(--bg));
}

.reviews-column {
	position: relative;
	min-width: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.reviews-column::-webkit-scrollbar {
	display: none;
}

.reviews-column .review-card {
	position: relative;
	top: auto !important;
	left: auto;
	width: 100%;
}

.reviews-column:first-child .review-card:nth-child(1) {
	top: -125px;
}

.reviews-column:first-child .review-card:nth-child(2) {
	top: 49px;
}

.reviews-column:first-child .review-card:nth-child(3) {
	top: 201px;
}

.reviews-column:first-child .review-card:nth-child(4) {
	top: 353px;
}

.reviews-column:first-child .review-card:nth-child(5) {
	top: 527px;
}

.reviews-column:nth-child(2) .review-card:nth-child(1) {
	top: -158px;
}

.reviews-column:nth-child(2) .review-card:nth-child(2) {
	top: -6px;
}

.reviews-column:nth-child(2) .review-card:nth-child(3) {
	top: 146px;
}

.reviews-column:nth-child(2) .review-card:nth-child(4) {
	top: 386px;
}

.reviews-column:nth-child(2) .review-card:nth-child(5) {
	top: 560px;
}

.reviews-column:last-child .review-card:nth-child(1) {
	top: -147px;
}

.reviews-column:last-child .review-card:nth-child(2) {
	top: 27px;
}

.reviews-column:last-child .review-card:nth-child(3) {
	top: 201px;
}

.reviews-column:last-child .review-card:nth-child(4) {
	top: 375px;
}

.reviews-column:last-child .review-card:nth-child(5) {
	top: 549px;
}

.reviews-column-side {
	opacity: 0.5;
}

.review-card {
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 24px;
	border: 1px solid var(--line);
	background: var(--bg);
}

.review-card-152 {
	height: 152px;
}

.review-card-174 {
	height: 174px;
}

.review-card-240 {
	height: 240px;
}

.review-card > p {
	color: var(--text-strong);
	font-size: 16px;
	line-height: 1.4;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.review-author div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.review-author strong,
.review-author small {
	font-size: 16px;
	font-weight: 400;
}

.review-author strong {
	color: var(--text-strong);
}

.review-author small {
	color: var(--text);
}

.avatar {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	flex: 0 0 52px;
	border-radius: 50%;
	color: rgba(188, 187, 218, 0.6);
	background: rgba(23, 23, 23, 0.5);
}

.avatar.blue {
	color: var(--blue);
	background: rgba(55, 87, 255, 0.25);
}

.avatar.pink {
	color: #c534fd;
	background: rgba(197, 52, 253, 0.25);
}

.methods {
	height: 1080px;
	background: var(--bg);
}

.methods::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background:
		radial-gradient(
			circle at 18% 22%,
			rgba(255, 255, 255, 0.12) 0 1px,
			transparent 1.5px
		),
		radial-gradient(
			circle at 76% 36%,
			rgba(55, 87, 255, 0.16) 0 1px,
			transparent 1.5px
		),
		radial-gradient(
			circle at 42% 72%,
			rgba(255, 255, 255, 0.08) 0 1px,
			transparent 1.5px
		);
	background-size:
		173px 149px,
		211px 187px,
		137px 193px;
	mix-blend-mode: screen;
	pointer-events: none;
	transition: opacity 900ms var(--ease-fluid);
}

.aura-background-component {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: clamp(800px, 56.25vw, 1080px);
	overflow: hidden;
	pointer-events: none;
	filter: saturate(1.5);
	-webkit-mask-image: linear-gradient(
		to bottom,
		#000 0%,
		#000 80%,
		transparent 100%
	);
	mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
}

.aura-background-component > div {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.methods-light {
	position: absolute;
	z-index: 0;
	top: -80px;
	left: 50%;
	width: 280px;
	height: 540px;
	transform: translateX(-50%);
	background:
		linear-gradient(90deg, transparent, rgba(55, 87, 255, 0.2), transparent),
		radial-gradient(ellipse, rgba(129, 62, 255, 0.35), transparent 70%);
	filter: blur(16px);
	transition: opacity 900ms var(--ease-fluid);
}

.methods.aura-ready::before,
.methods.aura-ready .methods-light {
	opacity: 0;
}

.methods-heading {
	position: relative;
	z-index: 2;
}

.methods-heading .eyebrow,
.methods-heading > p {
	color: var(--text-strong);
}

.methods-grid {
	position: relative;
	z-index: 2;
	width: 1120px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}

.tool-card {
	grid-column: span 2;
	height: 217px;
	padding: 16px 14px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	background: rgba(9, 9, 10, 0.2);
	-webkit-backdrop-filter: blur(10px) saturate(0.9);
	backdrop-filter: blur(10px) saturate(0.9);
	box-shadow: inset 0 1px 0 rgba(245, 246, 255, 0.025);
}

.tool-card::before {
	content: '';
	position: absolute;
	z-index: 0;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		118deg,
		rgba(245, 246, 255, 0.028),
		transparent 28%,
		transparent 76%,
		rgba(55, 87, 255, 0.025)
	);
}

.tool-card > * {
	position: relative;
	z-index: 1;
}

.tool-card-wide {
	grid-column: span 3;
}

.tool-icon {
	width: 42px;
	height: 42px;
	font-size: 18px;
}

.tool-copy {
	width: 100%;
}

.tool-copy h3,
.benefit-card h3 {
	color: var(--text-strong);
	font-size: 18px;
	font-weight: 500;
}

.tool-copy p,
.benefit-card p {
	margin-top: 16px;
	color: var(--text);
	font-size: 16px;
	line-height: 1.2;
}

.tool-card > a {
	width: 100%;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid var(--line);
	background: rgba(5, 6, 7, 0.72);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	font-size: 16px;
	transition:
		color 420ms var(--ease-fluid),
		border-color 420ms var(--ease-fluid),
		background-color 420ms var(--ease-fluid);
}

.tool-card > a:hover {
	color: var(--blue);
	border-color: rgba(55, 87, 255, 0.35);
}

.why {
	height: 1767px;
}

.why-shell {
	padding-top: 96px;
}

.why-heading {
	width: 100%;
}

.why-heading > p {
	margin-top: 16px;
}

.benefits-grid {
	width: 1120px;
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.benefit-card {
	position: relative;
	height: 217px;
	padding: 16px 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	border: 1px solid var(--line);
	background: rgba(9, 9, 10, 0.2);
	transition:
		border-color 420ms var(--ease-fluid),
		background-color 420ms var(--ease-fluid);
}

.benefit-card::before {
	content: '';
	position: absolute;
	z-index: 0;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		ellipse at center,
		rgba(55, 87, 255, 0.04),
		transparent 70%
	);
	opacity: 0;
	transition: opacity 500ms var(--ease-fluid);
}

.benefit-image::after {
	content: '';
	position: absolute;
	z-index: 1;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(
			ellipse 58% 54% at 74% 112%,
			rgba(181, 80, 255, 0.16),
			transparent 72%
		),
		radial-gradient(
			ellipse 76% 62% at 76% 112%,
			rgba(55, 87, 255, 0.18),
			transparent 74%
		);
	opacity: 0;
	transition: opacity 580ms var(--ease-fluid);
}

.benefit-visual {
	position: absolute;
	z-index: 1;
	inset: 0;
	pointer-events: none;
}

.benefit-art {
	position: absolute;
	object-fit: cover;
	transition:
		filter 700ms var(--ease-fluid),
		opacity 700ms var(--ease-fluid);
}

.benefit-visual::before {
	content: '';
	position: absolute;
	z-index: 2;
	background-image: url('../assets/texture.png');
	background-size: 193px 200px;
	mix-blend-mode: overlay;
	opacity: 0.12;
}

.benefit-visual-platform .benefit-art {
	top: -146.5px;
	left: 99px;
	width: 476.786px;
	height: 356px;
	-webkit-mask-image: radial-gradient(
		ellipse 47% 40% at 49% 58%,
		#000 24%,
		transparent 100%
	);
	mask-image: radial-gradient(
		ellipse 47% 40% at 49% 58%,
		#000 24%,
		transparent 100%
	);
	mix-blend-mode: screen;
}

.benefit-visual-platform::before {
	top: -115.64px;
	left: 127.02px;
	width: 418.91px;
	height: 407.54px;
	background-position: -28px -30.87px;
	-webkit-mask-image: radial-gradient(
		ellipse 220px 140px at 205.5px 176px,
		#000 24%,
		transparent 100%
	);
	mask-image: radial-gradient(
		ellipse 220px 140px at 205.5px 176px,
		#000 24%,
		transparent 100%
	);
	mix-blend-mode: overlay;
}

.benefit-visual-community .benefit-art {
	position: absolute;
	top: -94.5px;
	left: 158.75px;
	width: 452.679px;
	height: 338px;
	-webkit-mask-image: radial-gradient(
		ellipse 38% 38% at 50% 53%,
		#000 0%,
		rgba(0, 0, 0, 0.1) 62%,
		rgba(0, 0, 0, 0.05) 100%
	);
	mask-image: radial-gradient(
		ellipse 38% 38% at 50% 53%,
		#000 0%,
		rgba(0, 0, 0, 0.1) 62%,
		rgba(0, 0, 0, 0.05) 100%
	);
}

.benefit-visual-community::before {
	top: -22.5px;
	left: 176.27px;
	width: 418.91px;
	height: 407.54px;
	background-position: -17.52px -72px;
	transform: rotate(180deg);
	-webkit-mask-image: radial-gradient(
		ellipse 170px 127px at 208.7px 108px,
		#000 0%,
		rgba(0, 0, 0, 0.1) 62%,
		rgba(0, 0, 0, 0.05) 100%
	);
	mask-image: radial-gradient(
		ellipse 170px 127px at 208.7px 108px,
		#000 0%,
		rgba(0, 0, 0, 0.1) 62%,
		rgba(0, 0, 0, 0.05) 100%
	);
}

.benefit-light {
	position: absolute;
	z-index: 3;
	width: 384.923px;
	height: 346.415px;
	mix-blend-mode: plus-lighter;
	opacity: 0.72;
	transition: opacity 650ms var(--ease-fluid);
}

.benefit-visual-platform .benefit-light {
	top: -179.7px;
	left: 152.55px;
}

.benefit-visual-community .benefit-light {
	top: -188.7px;
	left: 191.8px;
}

.benefit-hover-mask {
	position: absolute;
	z-index: 4;
	top: -73.5px;
	left: 0;
	width: 552px;
	height: 331.118px;
	-webkit-mask-image: url('../assets/benefit-hover-mask.svg');
	-webkit-mask-position: -141.25px -123.18px;
	-webkit-mask-size: 799.53px 595.56px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-mode: alpha;
	mask-image: url('../assets/benefit-hover-mask.svg');
	mask-position: -141.25px -123.18px;
	mask-size: 799.53px 595.56px;
	mask-repeat: no-repeat;
	mask-mode: alpha;
	mix-blend-mode: overlay;
	opacity: 0;
	transition: opacity 650ms var(--ease-fluid);
}

.benefit-hover-texture {
	position: absolute;
	top: 3.39px;
	left: -13.56px;
	width: 549.226px;
	height: 549.226px;
	background: url('../assets/benefit-hover-texture.png') 0 0 / 600px 599px no-repeat;
}

.benefit-hover-vector {
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	width: 547.418px;
	height: 1864.856px;
	max-width: none;
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, -50%) rotate(35.21deg);
	transition: opacity 650ms var(--ease-fluid);
}

.benefit-visual-community .benefit-hover-vector {
	z-index: 0;
	opacity: 0.58;
}

.benefit-card > div:last-child {
	position: relative;
	z-index: 2;
	width: 100%;
	margin-top: auto;
}

.steps {
	height: 106px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	color: var(--text);
	font-size: 24px;
	font-weight: 400;
	transition:
		color 500ms var(--ease-fluid),
		text-shadow 500ms var(--ease-fluid);
}

.steps b {
	font-weight: 400;
}

.step-line {
	position: relative;
	width: 180px;
	height: 1px;
	overflow: hidden;
}

.step-line img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 1px;
}

.step-line img:last-child {
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transition:
		opacity 240ms ease,
		clip-path 750ms var(--ease-fluid);
}

.steps b:last-child {
	text-shadow: 0 0 16px var(--text);
}

.chart {
	position: relative;
	height: 106px;
	overflow: hidden;
}

.chart-grid {
	position: absolute;
	z-index: 1;
	top: 12px;
	left: 24px;
	right: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.chart-grid img {
	width: 100%;
	height: 1px;
}

.chart-plot {
	position: absolute;
	z-index: 2;
	top: 4.63px;
	left: 22.13px;
	width: 488.516px;
	height: 154.747px;
	display: grid;
	place-items: center;
}

.chart-plot img {
	position: absolute;
	width: 482.058px;
	height: 84.7695px;
	max-width: none;
	transform: rotate(-8.6deg);
}

.chart-plot-default {
	opacity: 1;
	transition: opacity 520ms var(--ease-fluid);
}

.chart-plot-hover {
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transition:
		opacity 220ms ease,
		clip-path 900ms var(--ease-fluid);
}

.chart-dot {
	position: absolute;
	z-index: 3;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--white);
	opacity: 0;
	transform: scale(0);
	transition:
		opacity 280ms ease,
		transform 500ms var(--ease-fluid);
}

.chart-dot-1 {
	top: 62px;
	left: 139px;
}

.chart-dot-2 {
	top: 62px;
	left: 210px;
}

.chart-dot-3 {
	top: 37px;
	left: 258px;
}

.chart-dot-4 {
	top: 37px;
	left: 309px;
}

.chart-dot-5 {
	top: 14px;
	left: 424px;
}

.faq-block {
	margin-top: 96px;
}

.faq-heading h2 {
	white-space: nowrap;
}

.faq-list {
	width: 1120px;
	margin-top: 48px;
}

.faq-item {
	border: 1px solid var(--line);
	background: var(--bg);
}

.faq-item button {
	width: 100%;
	min-height: 53px;
	padding: 15px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--text-strong);
	background: transparent;
	font-size: 18px;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
}

.faq-item button b {
	position: relative;
	width: 12px;
	height: 12px;
	flex: 0 0 12px;
	color: var(--text);
	font-weight: 400;
}

.faq-item button b svg {
	display: block;
}

.faq-item > p {
	max-height: 0;
	overflow: hidden;
	padding: 0 16px;
	color: var(--text);
	font-size: 16px;
	line-height: 1.5;
	opacity: 0;
	transform: translateY(-6px);
	will-change: max-height, opacity, transform;
	transition:
		max-height 680ms var(--ease-fluid),
		padding 620ms var(--ease-fluid),
		opacity 420ms ease,
		transform 620ms var(--ease-fluid);
}

.faq-item.open > p {
	padding: 0 16px 16px;
	opacity: 1;
	transform: translateY(0);
}

.cta-stage {
	position: relative;
	width: 1120px;
	height: 253px;
	margin-top: 48px;
	isolation: isolate;
}

.cta {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--blue-10);
	background: var(--bg);
}

.cta-lights {
	position: absolute;
	z-index: 1;
	right: -48px;
	bottom: -42px;
	left: 240px;
	height: 112px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 580ms var(--ease-fluid);
}

.cta-light {
	position: absolute;
	bottom: 0;
	height: 54px;
	border-radius: 50%;
	filter: blur(28px);
	transform: translateZ(0);
}

.cta-light-blue {
	right: 0;
	width: 68%;
	background: rgba(55, 87, 255, 0.64);
}

.cta-light-purple {
	left: 0;
	width: 58%;
	background: rgba(181, 80, 255, 0.58);
}

.cta-copy {
	position: relative;
	z-index: 3;
	width: 480px;
	padding: 32px;
}

.cta h2 {
	color: var(--text-strong);
	font-family: 'Syne', sans-serif;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
}

.cta p {
	width: 400px;
	margin-top: 16px;
	color: var(--text);
	font-size: 18px;
	line-height: 1.4;
}

.cta .button {
	width: 159px;
	margin-top: 32px;
}

.cta > img {
	position: absolute;
	z-index: 2;
	top: -236px;
	left: 217px;
	width: 724px;
	height: 724px;
	object-fit: contain;
}

.cta-stage:hover .cta-lights,
.cta-stage:focus-within .cta-lights {
	opacity: 1;
}

.footer {
	height: 300px;
	border: 1px solid var(--line);
	background: var(--bg);
}

.footer-shell {
	overflow: hidden;
}

.footer-main {
	height: 200px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-brand > a,
.footer-brand-mark {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-brand > a img,
.footer-brand-mark img {
	width: 20px;
	height: 20px;
}

.footer-brand > a strong,
.footer-brand-mark strong {
	font-size: 20px;
	font-weight: 500;
}

.footer-brand p {
	margin-top: 10px;
	color: var(--text);
	font-size: 14px;
	line-height: 1.4;
}

.socials {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.socials a {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	color: var(--text);
	border: 1px solid var(--line);
	font-size: 13px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
}

.footer-column strong {
	font-weight: 500;
}

.footer-column a {
	color: var(--text);
}

.footer-bottom {
	height: 100px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--text);
	border-top: 1px solid var(--line);
	font-size: 14px;
}

.footer-bottom b {
	margin: 0 6px;
	color: var(--blue);
}

@media (max-width: 1199px) {
	.shell,
	.section-shell {
		width: min(920px, calc(100% - 40px));
	}

	.nav-links {
		padding: 0 28px;
	}

	.hero {
		height: 900px;
	}

	.hero-inner {
		width: min(920px, calc(100% - 40px));
	}

	.hero-copy {
		top: 210px;
		width: 600px;
	}

	.hero-copy h1 {
		font-size: 42px;
	}

	.hero-copy > p {
		width: 600px;
		font-size: 21px;
	}

	.hero-visual {
		right: -180px;
		opacity: 0.75;
	}

	.hero-copy {
		z-index: 8;
	}

	.about,
	.reviews,
	.methods,
	.why,
	.footer {
		height: auto;
		min-height: 0;
	}

	.section-shell {
		border: 0;
	}

	.about .section-shell,
	.reviews .section-shell,
	.methods .section-shell {
		padding: 80px 0;
	}

	.reviews-wall,
	.methods-grid,
	.benefits-grid,
	.faq-list,
	.cta-stage,
	.cta {
		width: 100%;
	}

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

	.tool-card,
	.tool-card-wide {
		grid-column: span 1;
	}

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

	.why-shell {
		padding: 80px 0;
	}

	.faq-block {
		margin-top: 140px;
	}

	.cta > img {
		left: 170px;
	}

	.footer-shell {
		padding: 0;
	}
}

@media (max-width: 899px) {
	.navbar {
		justify-content: space-between;
	}

	.nav-links {
		position: absolute;
		top: 67px;
		left: -1px;
		right: -1px;
		height: auto;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 12px;
		border: 1px solid var(--line);
		background: rgba(5, 6, 7, 0.97);
	}

	.navbar.menu-open .nav-links {
		display: flex;
	}

	.nav-links a {
		padding: 13px 8px;
		text-align: center;
	}

	.nav-links span {
		width: 100%;
		height: 1px;
	}

	.nav-button {
		margin-left: auto;
		margin-right: 10px;
	}

	.menu-button {
		display: block;
	}

	.hero {
		height: auto;
		min-height: 940px;
	}

	.hero-inner {
		height: auto;
		min-height: 820px;
	}

	.hero-copy {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		padding-top: 130px;
	}

	.hero-copy h1 {
		max-width: 680px;
	}

	.hero-copy > p {
		width: min(620px, 100%);
	}

	.hero-visual {
		top: 360px;
		right: -160px;
		transform: scale(0.76);
		opacity: 0.55;
	}

	.video-stage {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
		flex-basis: auto;
	}

	.video {
		aspect-ratio: 16 / 9;
	}

	.about-heading,
	.about-copy {
		width: min(100%, 680px);
	}

	.metrics {
		flex-wrap: wrap;
		justify-content: center;
	}

	.reviews-wall {
		height: 600px;
		grid-template-columns: repeat(2, 1fr);
	}

	.reviews-column:last-child {
		display: none;
	}

	.benefit-visual-platform .benefit-art {
		left: 20px;
	}

	.benefit-visual-platform::before {
		left: 48px;
	}

	.benefit-visual-community .benefit-art {
		left: 60px;
	}

	.benefit-visual-community::before {
		left: 77.5px;
	}

	.cta > img {
		left: 40%;
		opacity: 0.76;
	}

	.footer-main {
		height: auto;
		min-height: 260px;
		gap: 40px;
		flex-wrap: wrap;
		padding: 40px 24px;
	}
}

@media (max-width: 639px) {
	main,
	.section,
	.section-shell,
	.section-heading,
	.about-copy,
	.reviews-wall,
	.reviews-column,
	.review-card,
	.methods-grid,
	.tool-card,
	.benefits-grid,
	.benefit-card,
	.faq-block,
	.faq-list,
	.faq-item,
	.cta-stage,
	.cta {
		min-width: 0;
		max-width: 100%;
	}

	.shell,
	.section-shell,
	.hero-inner {
		width: calc(100% - 24px);
	}

	.navbar {
		width: calc(100% - 16px);
	}

	.nav-button {
		width: 132px;
		min-width: 132px;
		flex: 0 0 132px;
	}

	.nav-button span {
		padding: 0 10px;
	}

	.nav-button b {
		width: 38px;
	}

	.hero {
		min-height: 820px;
	}

	.hero-inner {
		min-height: 700px;
	}

	.hero-copy {
		padding-top: 100px;
	}

	.hero-eyebrow {
		gap: 6px;
	}

	.eyebrow {
		font-size: 13px;
		letter-spacing: 2.2px;
	}

	.hero-eyebrow img {
		width: 18px;
		height: 18px;
	}

	.hero-copy h1 {
		max-width: 100%;
		font-size: clamp(29px, 8vw, 34px);
		line-height: 1.24;
		letter-spacing: -0.8px;
		overflow-wrap: break-word;
	}

	.hero-copy > p {
		font-size: 18px;
		overflow-wrap: break-word;
	}

	.hero-actions {
		margin-top: 32px;
	}

	.hero-visual {
		top: 355px;
		right: -235px;
		transform: scale(0.62);
	}

	.method-card {
		display: none;
	}

	.about .section-shell,
	.reviews .section-shell,
	.methods .section-shell {
		padding: 64px 0;
	}

	.section-heading h2 {
		max-width: 100%;
		font-size: 27px;
		letter-spacing: -0.4px;
		overflow-wrap: break-word;
	}

	.compact,
	.compact > p,
	.about-heading,
	.about-copy {
		width: 100%;
	}

	.about-copy p,
	.section-heading > p {
		font-size: 16px;
		overflow-wrap: break-word;
	}

	.metrics {
		width: 100%;
		align-items: flex-start;
		flex-direction: column;
	}

	.reviews-wall {
		height: 600px;
		grid-template-columns: 1fr;
	}

	.reviews-column-side {
		display: none;
	}

	.reviews-column-main {
		opacity: 1;
	}

	.review-card > p {
		overflow-wrap: break-word;
	}

	.reviews-column-main .review-card {
		position: static;
	}

	.reviews-column-main .review-card:first-child,
	.reviews-column-main .review-card:last-child {
		display: none;
	}

	.methods-grid,
	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.tool-card {
		height: 217px;
	}

	.why-shell {
		padding: 64px 0;
	}

	.why-heading > p br {
		display: none;
	}

	.why-heading h2 {
		font-size: 26px;
	}

	.benefit-card {
		height: 235px;
	}

	.benefit-visual-platform .benefit-art,
	.benefit-visual-platform::before,
	.benefit-visual-community .benefit-art,
	.benefit-visual-community::before {
		left: 50%;
		transform: translateX(-50%);
	}

	.benefit-visual-platform .benefit-light,
	.benefit-visual-community .benefit-light {
		left: 50%;
		transform: translateX(-50%);
	}

	.benefit-hover-mask {
		left: 50%;
		transform: translateX(-50%);
	}

	.steps {
		padding-inline: 10px;
	}

	.step-line {
		width: min(128px, 31vw);
	}

	.chart-plot {
		left: 4px;
		transform: scale(0.72);
		transform-origin: left center;
	}

	.chart-dot-1 {
		left: 88px;
	}

	.chart-dot-2 {
		left: 139px;
	}

	.chart-dot-3 {
		left: 174px;
	}

	.chart-dot-4 {
		left: 211px;
	}

	.chart-dot-5 {
		left: 294px;
	}

	.faq-block {
		margin-top: 112px;
	}

	.faq-heading h2 {
		white-space: normal;
	}

	.faq-item button {
		gap: 20px;
		font-size: 16px;
	}

	.cta-stage {
		height: 360px;
	}

	.cta-copy {
		width: 100%;
		padding: 28px 24px;
	}

	.cta h2 {
		font-size: 30px;
	}

	.cta p {
		width: min(100%, 360px);
		font-size: 16px;
	}

	.cta > img {
		top: 70px;
		left: 16%;
		width: 520px;
		height: 520px;
		opacity: 0.42;
	}

	.cta-lights {
		right: -60px;
		left: -20px;
	}

	.footer-main {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-column {
		width: 100%;
	}

	.footer-bottom {
		height: auto;
		min-height: 100px;
		gap: 12px;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.ticker-track {
		animation: none;
	}

	.method-card-front {
		animation: none;
	}
}

.ticker-track {
	width: max-content;
	justify-content: flex-start;
	padding: 0;
	transform: translate3d(-50%, 0, 0);
	animation: ticker-forward 28s linear infinite;
	will-change: transform;
}

.ticker-group {
	display: flex;
	align-items: center;
	flex: 0 0 max-content;
}

@keyframes ticker-forward {
	from {
		transform: translate3d(-50%, 0, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.review-card,
.tool-card,
.benefit-card,
.faq-item {
	transition:
		color 480ms var(--ease-fluid),
		border-color 480ms var(--ease-fluid),
		background 480ms var(--ease-fluid),
		box-shadow 600ms var(--ease-fluid),
		transform 600ms var(--ease-fluid);
}

.review-card {
	position: relative;
}

.review-card:hover {
	z-index: 4;
	border-color: var(--blue-10);
	background:
		radial-gradient(
			ellipse at center,
			rgba(55, 87, 255, 0.04),
			transparent 70%
		),
		var(--bg);
}

.review-card:hover > p,
.review-card:hover .review-author strong {
	color: var(--white);
}

.review-author::after {
	content: '★★★★★';
	margin-left: auto;
	align-self: flex-end;
	color: rgba(188, 187, 218, 0.28);
	font-size: 14px;
	letter-spacing: 2px;
	opacity: 0;
	transform: translateY(4px);
	transition:
		opacity 360ms var(--ease-fluid),
		transform 480ms var(--ease-fluid);
}

.review-card:hover .review-author::after {
	opacity: 1;
	transform: translateY(0);
}

.tool-card {
	position: relative;
}

.tool-card:hover,
.tool-card:focus-within {
	border-color: var(--blue-10);
	background:
		radial-gradient(
			ellipse at center,
			rgba(55, 87, 255, 0.04),
			transparent 75%
		),
		rgba(9, 9, 10, 0.2);
	box-shadow: inset 0 1px 0 rgba(245, 246, 255, 0.035);
}

.tool-card:hover .tool-copy h3,
.tool-card:focus-within .tool-copy h3 {
	color: var(--white);
}

.tool-card .tool-copy::after {
	content: 'View Tutorial ↓';
	position: absolute;
	right: 14px;
	bottom: 80px;
	color: var(--blue);
	font-size: 16px;
	opacity: 0;
	transform: translateY(-4px);
	transition:
		opacity 360ms var(--ease-fluid),
		transform 480ms var(--ease-fluid);
}

.tool-card:hover .tool-copy::after,
.tool-card:focus-within .tool-copy::after {
	opacity: 1;
	transform: translateY(0);
}

.benefit-card:hover {
	border-color: var(--blue-10);
	background-color: rgba(9, 9, 10, 0.2);
}

.benefit-card:hover::before {
	opacity: 1;
}

.benefit-image:hover::after {
	opacity: 1;
}

.benefit-card:hover h3 {
	color: var(--white);
}

.benefit-card:hover .benefit-art {
	filter: brightness(1.08) saturate(1.08);
}

.benefit-card:hover .steps {
	color: var(--white);
}

.benefit-card:hover .steps b:last-child {
	text-shadow: 0 0 16px var(--white);
}

.benefit-card:hover .step-line img:last-child {
	opacity: 1;
	clip-path: inset(0 0 0 0);
}

.benefit-card:hover .benefit-hover-vector {
	opacity: 1;
}

.benefit-card:hover .benefit-hover-mask {
	opacity: 0.55;
}

.benefit-card:hover .chart-plot-default {
	opacity: 0;
}

.benefit-card:hover .chart-plot-hover {
	opacity: 1;
	clip-path: inset(0 0 0 0);
}

.benefit-card:hover .chart-dot {
	opacity: 1;
	transform: scale(1);
}

.benefit-card:hover .chart-dot-1 {
	transition-delay: 180ms;
}

.benefit-card:hover .chart-dot-2 {
	transition-delay: 280ms;
}

.benefit-card:hover .chart-dot-3 {
	transition-delay: 390ms;
}

.benefit-card:hover .chart-dot-4 {
	transition-delay: 500ms;
}

.benefit-card:hover .chart-dot-5 {
	transition-delay: 620ms;
}

.faq-item:hover,
.faq-item.open {
	border-color: var(--blue-10);
	background:
		radial-gradient(
			ellipse at center,
			rgba(55, 87, 255, 0.04),
			transparent 75%
		),
		var(--bg);
}

.faq-item.open button span {
	color: var(--white);
}

.aura-background-component {
	height: 800px;
	-webkit-mask-image: linear-gradient(
		transparent,
		#000 0%,
		#000 80%,
		transparent 100%
	);
	mask-image: linear-gradient(transparent, #000 0%, #000 80%, transparent 100%);
}

.aura-background-component canvas {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100% !important;
	min-width: 1415px;
	height: 800px !important;
	transform: translateX(-50%);
}

.socials span {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	color: var(--text);
	border: 1px solid var(--line);
	font-size: 13px;
	cursor: default;
}

.footer-column > span {
	color: var(--text);
	cursor: default;
}

.method-page {
	display: block;
	min-height: 100vh;
	padding-top: 68px;
	background: var(--bg);
}

body.method-document {
	min-height: 100vh;
}

.method-navbar {
	position: fixed;
}

.method-page-shell {
	min-height: 960px;
	padding: 96px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-left: 1px solid rgba(188, 187, 218, 0.06);
	border-right: 1px solid rgba(188, 187, 218, 0.06);
}

.method-page-heading {
	width: min(720px, calc(100% - 32px));
	text-align: center;
}

.method-title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.method-title-row h1 {
	color: var(--white);
	font-family: 'Syne', 'Outfit', sans-serif;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
}

.method-page-heading > p {
	margin-top: 16px;
	color: var(--text);
	font-size: 18px;
	line-height: 1.4;
}

.method-back {
	width: 53px;
	height: 42px;
	display: grid;
	place-items: center;
	color: var(--text);
	border: 1px solid var(--line);
	background: var(--bg);
	font-size: 22px;
	cursor: pointer;
	transition:
		color 180ms ease,
		border-color 180ms ease,
		background 180ms ease;
}

.method-back:hover {
	color: var(--white);
	border-color: var(--blue-10);
	background: rgba(55, 87, 255, 0.04);
}

.method-workspace {
	width: min(800px, calc(100% - 32px));
	margin-top: 48px;
}

.method-video-stage {
	width: 100%;
}

.method-video-player {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--bg);
}

.method-guide-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: var(--bg);
	vertical-align: middle;
}

.method-video-player.is-playing .method-guide-video {
	object-fit: contain;
}

.video-stage:hover .method-video-player,
.method-video-stage:hover .method-video-player,
.video-stage:focus-within .method-video-player,
.method-video-stage:focus-within .method-video-player {
	border-color: rgba(55, 87, 255, 0.2);
}

.method-video-play {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 0;
	background: rgba(5, 6, 7, 0.18);
	cursor: pointer;
}

.method-video-play[hidden] {
	display: none;
}

.video-stage:hover .method-video-play .play,
.method-video-stage:hover .method-video-play .play,
.method-video-play:focus-visible .play {
	filter: drop-shadow(0 0 18px rgba(55, 87, 255, 0.28));
	transform: scale(1.035);
}

.method-workspace-form {
	width: 100%;
	overflow: visible;
}

.method-action-row,
.country-action,
.follow-action {
	width: 100%;
	display: flex;
	gap: 10px;
	margin-top: 10px;
	overflow: visible;
}

.method-input,
.country-control {
	height: 67px;
	flex: 1;
	min-width: 0;
	color: var(--text-strong);
	border: 1px solid var(--line);
	outline: 0;
	background: var(--bg);
	font:
		400 16px/1.2 'Outfit',
		sans-serif;
}

.method-input {
	padding: 24px;
	-webkit-text-security: disc;
	text-security: disc;
}

.method-input::placeholder,
.country-control input::placeholder {
	color: var(--text);
	opacity: 1;
}

.method-input:focus,
.country-control:focus-within {
	border-color: rgba(55, 87, 255, 0.3);
}

.method-input.invalid {
	border-color: rgba(255, 80, 80, 0.55);
}

.method-submit {
	height: 67px;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--white);
	border: 1px solid var(--line);
	background: var(--bg);
	cursor: pointer;
	transition:
		color 180ms ease,
		border-color 180ms ease,
		background 180ms ease;
}

.method-submit:hover {
	color: var(--blue);
	border-color: rgba(55, 87, 255, 0.3);
	background: rgba(55, 87, 255, 0.04);
}

.follow-action {
	flex-direction: column;
	align-items: stretch;
}

.follow-amount-picker {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	width: 100%;
}

.follow-amount-option {
	min-height: 52px;
	padding: 12px 8px;
	color: var(--text-strong);
	border: 1px solid var(--line);
	background: var(--bg);
	font:
		500 15px/1.2 'Outfit',
		sans-serif;
	cursor: pointer;
	transition:
		color 180ms ease,
		border-color 180ms ease,
		background 180ms ease;
}

.follow-amount-option:hover {
	color: var(--white);
	border-color: rgba(55, 87, 255, 0.25);
	background: rgba(55, 87, 255, 0.04);
}

.follow-amount-option.is-selected {
	color: var(--white);
	border-color: rgba(55, 87, 255, 0.45);
	background: rgba(55, 87, 255, 0.12);
	box-shadow: inset 0 0 0 1px rgba(55, 87, 255, 0.18);
}

.follow-submit {
	width: 100%;
}

.country-picker {
	position: relative;
	flex: 1;
	min-width: 0;
}

.country-picker.open {
	z-index: 100;
}

.country-control {
	display: flex;
	align-items: center;
	border-width: 2px;
	cursor: text;
	touch-action: manipulation;
	gap: 10px;
	padding-left: 18px;
}

.country-selected-flag {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	object-fit: contain;
	display: block;
}

.country-selected-flag[hidden] {
	display: none;
}

.country-control input {
	width: 100%;
	height: 100%;
	min-width: 0;
	padding: 24px;
	color: var(--text-strong);
	border: 0;
	outline: 0;
	background: transparent;
	font:
		400 16px/1.2 'Outfit',
		sans-serif;
}

.country-chevron {
	width: 54px;
	flex: 0 0 54px;
	color: var(--text);
	pointer-events: none;
	text-align: center;
	transition: transform 180ms ease;
}

.country-picker.open .country-chevron {
	transform: rotate(180deg);
}

.country-options {
	position: absolute;
	z-index: 110;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	max-height: min(381px, calc(100dvh - 180px));
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--line);
	background: var(--bg);
	box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.28);
	scrollbar-width: thin;
	scrollbar-color: rgba(55, 87, 255, 0.55) rgba(188, 187, 218, 0.08);
}

.country-options:not([hidden]) {
	display: block;
}

.country-options::-webkit-scrollbar {
	width: 8px;
}

.country-options::-webkit-scrollbar-track {
	margin: 10px 4px;
	border-radius: 999px;
	background: rgba(188, 187, 218, 0.08);
}

.country-options::-webkit-scrollbar-thumb {
	border-radius: 999px;
	border: 2px solid transparent;
	background:
		linear-gradient(180deg, rgba(55, 87, 255, 0.72), rgba(55, 87, 255, 0.35))
		padding-box;
	background-clip: padding-box;
}

.country-options::-webkit-scrollbar-thumb:hover {
	background:
		linear-gradient(180deg, rgba(55, 87, 255, 0.9), rgba(55, 87, 255, 0.5))
		padding-box;
}

.country-option,
.country-hint,
.country-empty {
	width: 100%;
	min-height: 52px;
	padding: 16px 24px;
	color: var(--text);
	border: 0;
	border-bottom: 1px solid var(--line);
	background: var(--bg);
	font:
		400 16px/1.2 'Outfit',
		sans-serif;
	text-align: left;
}

.country-option {
	cursor: pointer;
	touch-action: manipulation;
	display: flex;
	align-items: center;
	gap: 10px;
}

.country-option-flag {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	object-fit: contain;
	display: block;
}

.country-option-name {
	min-width: 0;
}

.country-option:hover,
.country-option[aria-selected='true'] {
	color: var(--white);
	background: rgba(55, 87, 255, 0.05);
}

.country-hint,
.country-empty {
	display: block;
	cursor: default;
}

.method-status {
	min-height: 20px;
	margin-top: 12px;
	color: var(--text);
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.country-status-flag {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	object-fit: contain;
	display: block;
}

.method-status.success {
	color: #8da0ff;
}

.method-status.progress {
	color: var(--text-strong);
}

@media (max-width: 899px) {
	.method-navbar .nav-links,
	.method-navbar .nav-button {
		display: none;
	}

	.method-page-shell {
		min-height: 860px;
		padding: 72px 0;
	}

	.method-workspace {
		width: min(720px, calc(100% - 32px));
	}
}

@media (max-width: 639px) {
	.method-page-shell {
		width: calc(100% - 24px);
		padding: 56px 0;
	}

	.method-title-row {
		align-items: flex-start;
	}

	.method-title-row h1 {
		font-size: 28px;
	}

	.method-page-heading > p {
		font-size: 16px;
	}

	.method-back {
		width: 44px;
		flex: 0 0 44px;
	}

	.method-action-row,
	.country-action,
	.follow-action {
		flex-direction: column;
	}

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

	.method-submit,
	.follow-submit {
		width: 100%;
	}

	.country-options {
		position: absolute;
		top: calc(100% + 8px);
		max-height: min(320px, 42dvh);
	}

	.method-footer .footer-main {
		padding-top: 40px;
	}
}

.blocked-page-shell {
	min-height: calc(100dvh - 120px);
	justify-content: center;
	padding-top: 120px;
	padding-bottom: 64px;
}

.blocked-document {
	min-height: 100dvh;
	margin: 0;
	background: var(--bg);
}

.blocked-page-shell--standalone {
	min-height: 100dvh;
	padding: 24px;
	border: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.blocked-panel {
	position: relative;
	width: min(560px, calc(100% - 32px));
	padding: 48px 32px 40px;
	border: 1px solid var(--line);
	background: var(--surface);
	text-align: center;
	overflow: hidden;
}

.blocked-panel-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.blocked-panel-glow .video-light-blue {
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
}

.blocked-panel-glow .video-light-purple {
	right: -80px;
	bottom: -120px;
}

.blocked-panel > :not(.blocked-panel-glow) {
	position: relative;
	z-index: 1;
}

.blocked-code {
	display: inline-block;
	margin-bottom: 18px;
	padding: 6px 12px;
	border: 1px solid var(--line);
	color: var(--text-strong);
	background: rgba(5, 6, 7, 0.55);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.12em;
}

.blocked-eyebrow {
	display: block;
	margin-bottom: 14px;
}

.blocked-panel h1 {
	margin: 0;
	color: var(--white);
	font-family: 'Syne', 'Outfit', sans-serif;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
}

.blocked-panel p {
	max-width: 420px;
	margin: 16px auto 0;
	color: var(--text);
	font-size: 18px;
	line-height: 1.45;
}

@media (max-width: 639px) {
	.blocked-page-shell {
		padding-top: 96px;
	}

	.blocked-panel {
		padding: 36px 24px 32px;
	}

	.blocked-panel h1 {
		font-size: 28px;
	}

	.blocked-panel p {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ticker-track {
		transform: translate3d(-50%, 0, 0);
	}
}
