* {
	box-sizing: border-box;
}

body {
	margin: 0px;
	font-family: "DM Sans", sans-serif;
	color: var(--color-text, #111827);
}

p {
	margin: 0px 0px 1em;
	padding: 0px;
}

img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

picture {
	display: block;
	width: 100%;
	height: 100%;
}

picture img {
	display: block;
}

button, input, optgroup, select, textarea {
	font: inherit;
}

.page-404 {
	min-height: 100vh;
	display: grid;
	place-items: center;
	text-align: center;
	font-family: system-ui, sans-serif;
	color: rgb(17, 24, 39);
	padding: 24px;
}

.page-404-code {
	font-size: 96px;
	font-weight: 700;
	margin: 0px;
	letter-spacing: -0.04em;
	color: rgb(79, 70, 229);
}

.page-404-title {
	font-size: 28px;
	margin: 8px 0px 12px;
	letter-spacing: -0.02em;
}

.page-404-message {
	font-size: 18px;
	color: rgb(107, 114, 128);
	margin: 0px 0px 28px;
}

.page-404-link {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 12px;
	background: rgb(79, 70, 229);
	color: rgb(255, 255, 255);
	font-weight: 600;
	text-decoration: none;
}

.container {
	max-width: 760px;
	margin: 0px auto;
	padding-top: 0px;
	padding-bottom: 0px;
}

.container--wide {
	max-width: 1000px;
	margin: 0px auto;
	padding: 0px 24px;
}

.nav {
	border-bottom: 1px solid var(--grey-200);
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav__logo {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: -0.02em;
}

.nav__links {
	display: flex;
	gap: 24px;
}

.nav__link {
	font-size: 14px;
	color: var(--grey-500);
	text-decoration: none;
}

.nav__cta {
	background: var(--green-300);
	color: rgb(255, 255, 255);
	font-size: 14px;
	font-weight: 600;
	padding: 8px 18px;
	border-radius: 8px;
	text-decoration: none;
}

.hero {
	padding: 96px 24px 72px;
	text-align: center;
}

.hero__badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green-400);
	background: rgb(230, 255, 240);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 20px;
}

.hero__headline {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
	max-width: 640px;
	margin: 0px auto 20px;
}

.hero__subtext {
	font-size: 18px;
	color: var(--grey-500);
	max-width: 520px;
	margin: 0px auto 40px;
	line-height: 1.6;
}

.hero__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
}

.btn--primary {
	background: var(--green-300);
	color: rgb(255, 255, 255);
}

.btn--secondary {
	background: var(--grey-100);
	color: var(--grey-700);
}

.why {
	padding: 72px 24px;
	background: var(--grey-100);
}

.section-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green-400);
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 40px;
}

.why__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.why__item {
	background: rgb(255, 255, 255);
	border-radius: var(--radius);
	padding: 24px;
}

.why__icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(0, 0, 0);
	flex-shrink: 0;
	background-color: var(--green-300);
}

.why__icon svg {
	display: block;
}

.why__item h3 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 8px;
}

.why__item p {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.6;
}

.problems {
	padding: 80px 24px;
}

.problems__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 40px;
}

.problem {
	border-left: 3px solid var(--grey-200);
	padding-left: 24px;
}

.problem h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.problem p {
	font-size: 15px;
	color: var(--grey-500);
	line-height: 1.7;
}

.how {
	padding: 80px 24px;
	background: var(--grey-900);
	color: rgb(255, 255, 255);
}

.how .section-label {
	color: var(--green-200);
}

.how .section-title {
	color: rgb(255, 255, 255);
}

.how__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.how__card {
	background: var(--grey-800);
	border-radius: var(--radius);
	padding: 28px;
}

.how__card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	color: rgb(255, 255, 255);
}

.how__card p {
	font-size: 14px;
	color: var(--grey-400);
	line-height: 1.7;
}

.steps {
	padding: 80px 24px;
}

.steps__list {
	display: flex;
	flex-direction: column;
	gap: 0px;
	margin-top: 40px;
}

.step {
	display: flex;
	gap: 24px;
	padding: 28px 0px;
	border-bottom: 1px solid var(--grey-200);
}

.step:last-child {
	border-bottom: none;
}

.step__number {
	font-size: 46px;
	font-weight: 800;
	color: var(--green-400);
	min-width: 40px;
	line-height: 93%;
}

.step__content h3 {
	font-size: 17px;
	font-weight: 700;
	margin-block: 0px 8px;
}

.step__content p {
	font-size: 15px;
	color: var(--grey-500);
	line-height: 1.7;
}

.faq {
	padding: 80px 24px;
	background: var(--grey-100);
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 0px;
	margin-top: 40px;
}

.faq__item {
	padding: 24px 0px;
	border-bottom: 1px solid var(--grey-200);
}

.faq__item:last-child {
	border-bottom: none;
}

.faq__item summary {
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.faq__item summary::-webkit-details-marker {
	display: none;
}

.faq__item summary::after {
	content: "";
	width: 9px;
	height: 9px;
	border-right: 2px solid var(--grey-400);
	border-bottom: 2px solid var(--grey-400);
	transform: rotate(45deg);
	transition: transform 0.15s;
	flex-shrink: 0;
	margin-top: -5px;
}

.faq__item[open] summary::after {
	transform: rotate(225deg);
}

.faq__item .faq__answer, .faq__item p {
	font-size: 15px;
	color: var(--grey-500);
	line-height: 1.7;
}

.faq__item .faq__answer {
	margin-top: 12px;
}

.related {
	padding: 80px 24px;
}

.related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin-top: 32px;
}

.related__card {
	border: 1px solid var(--grey-200);
	border-radius: var(--radius);
	padding: 20px;
	text-decoration: none;
	color: var(--color-text);
}

.related__card:hover {
	border-color: var(--green-300);
}

.related__card h4 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}

.related__card p {
	font-size: 13px;
	color: var(--grey-500);
}

.final-cta {
	padding: 96px 24px;
	text-align: center;
	color: rgb(255, 255, 255);
	background-color: var(--green-300);
}

.final-cta h2 {
	font-size: clamp(24px, 4vw, 40px);
	font-weight: 700;
	letter-spacing: -0.03em;
	max-width: 560px;
	margin: 0px auto 16px;
	line-height: 1.2;
}

.final-cta p {
	font-size: 17px;
	max-width: 440px;
	margin: 0px auto 40px;
	line-height: 1.6;
}

.final-cta .btn--primary {
	background: var(--green-300);
}

.final-cta .btn--secondary {
	background: transparent;
	color: var(--green-100);
	border: 1px solid var(--green-600);
}

.final-cta--black {
	background: var(--grey-950);
}

.final-cta--black p {
	color: var(--grey-400);
}

.final-cta--black .btn--secondary {
	background: transparent;
	color: var(--grey-300);
	border: 1px solid var(--grey-700);
}

.footer {
	padding: 32px 24px;
	border-top: 1px solid var(--grey-200);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer__logo {
	font-size: 14px;
	font-weight: 700;
}

.footer__links {
	display: flex;
	gap: 20px;
}

.footer__link {
	font-size: 13px;
	color: var(--grey-400);
	text-decoration: none;
}

.container-2 {
	max-width: 900px;
	margin: 0px auto;
	padding: 0px 24px;
}

.wf-nav {
	border-bottom: 1.5px solid var(--grey-200, #e0e0e0);
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.wf-nav-logo {
	width: 120px;
	height: 28px;
	background: var(--grey-200, #e0e0e0);
	border-radius: 4px;
}

.wf-nav-links {
	display: flex;
	gap: 12px;
}

.wf-nav-link {
	width: 72px;
	height: 14px;
	background: var(--grey-200, #e0e0e0);
	border-radius: 4px;
}

.wf-nav-cta {
	width: 110px;
	height: 34px;
	background: var(--green-300, #0bda51);
	border-radius: 8px;
	opacity: 0.5;
}

section {
	padding: 64px 0px;
}

.hero-2 {
	padding: 80px 0px 72px;
	text-align: center;
}

.hero-label {
	display: inline-block;
	background: var(--grey-100, #f0f0f0);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--grey-500, #6f6f6f);
	margin-bottom: 24px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hero-2 h1 {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin: 0px auto 20px;
	max-width: 700px;
}

.hero-sub {
	font-size: 18px;
	color: var(--grey-500, #6f6f6f);
	max-width: 560px;
	margin: 0px auto 36px;
	line-height: 1.6;
}

.hero-ctas {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary {
	display: inline-block;
	padding: 14px 28px;
	background: var(--green-300, #0bda51);
	color: var(--green-900, #011f14);
	font-weight: 700;
	font-size: 15px;
	border-radius: var(--radius, 12px);
	text-decoration: none;
	border: none;
	cursor: pointer;
}

.btn-secondary {
	display: inline-block;
	padding: 14px 28px;
	background: transparent;
	color: var(--color-text, #111827);
	font-weight: 600;
	font-size: 15px;
	border-radius: var(--radius, 12px);
	text-decoration: none;
	border: 1.5px solid var(--grey-200, #e0e0e0);
	cursor: pointer;
}

.hero-note {
	margin-top: 20px;
	font-size: 13px;
	color: var(--grey-400, #8a8a8a);
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 40px;
}

.why-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 20px;
	border: 1.5px solid var(--grey-100, #f0f0f0);
	border-radius: var(--radius, 12px);
	background: var(--grey-100, #f0f0f0);
}

.why-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background: var(--green-300, #0bda51);
	border-radius: 50%;
	opacity: 0.6;
	margin-top: 2px;
}

.why-text {
	font-size: 14px;
	line-height: 1.5;
	color: var(--grey-700, #2b2b2b);
}

.section-label-2 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green-400, #09b945);
	margin-bottom: 12px;
}

.section-title-2 {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0px 0px 16px;
	line-height: 1.2;
}

.section-sub {
	font-size: 16px;
	color: var(--grey-500, #6f6f6f);
	max-width: 540px;
	line-height: 1.6;
	margin: 0px;
}

.pain-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}

.pain-card {
	padding: 28px;
	border: 1.5px solid var(--grey-200, #e0e0e0);
	border-radius: var(--radius, 12px);
}

.pain-card h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0px 0px 10px;
}

.pain-card p {
	font-size: 14px;
	color: var(--grey-500, #6f6f6f);
	margin: 0px;
	line-height: 1.6;
}

.helps-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
	margin-top: 40px;
}

.helps-feature h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0px 0px 10px;
}

.helps-feature p {
	font-size: 14px;
	color: var(--grey-500, #6f6f6f);
	margin: 0px;
	line-height: 1.6;
}

.helps-feature ul {
	margin: 12px 0px 0px;
	padding-left: 18px;
	font-size: 14px;
	color: var(--grey-500, #6f6f6f);
	line-height: 1.8;
}

.steps-2 {
	display: flex;
	flex-direction: column;
	gap: 0px;
	margin-top: 40px;
	counter-reset: step 0;
}

.step-2 {
	display: flex;
	gap: 20px;
	padding: 24px 0px;
	border-bottom: 1px solid var(--grey-100, #f0f0f0);
}

.step-2:last-child {
	border-bottom: none;
}

.step-number {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--grey-100, #f0f0f0);
	border: 1.5px solid var(--grey-200, #e0e0e0);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
	color: var(--grey-600, #3a3a3a);
}

.step-body h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 4px 0px 8px;
}

.step-body p {
	font-size: 14px;
	color: var(--grey-500, #6f6f6f);
	margin: 0px;
	line-height: 1.6;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 40px;
}

.faq-item {
	padding: 24px;
	border: 1.5px solid var(--grey-100, #f0f0f0);
	border-radius: var(--radius, 12px);
}

.faq-item h3 {
	font-size: 15px;
	font-weight: 700;
	margin: 0px 0px 10px;
}

.faq-item p {
	font-size: 14px;
	color: var(--grey-500, #6f6f6f);
	margin: 0px;
	line-height: 1.6;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-top: 40px;
}

.related-card {
	padding: 20px;
	border: 1.5px solid var(--grey-200, #e0e0e0);
	border-radius: var(--radius, 12px);
	text-decoration: none;
	color: var(--color-text, #111827);
	display: block;
	transition: border-color 0.15s;
}

.related-card:hover {
	border-color: var(--green-300, #0bda51);
}

.related-card-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--grey-400, #8a8a8a);
	margin-bottom: 6px;
}

.related-card-title {
	font-size: 15px;
	font-weight: 700;
}

.related-card-sub {
	font-size: 13px;
	color: var(--grey-500, #6f6f6f);
	margin-top: 4px;
	line-height: 1.4;
}

.cta-banner {
	background: var(--grey-950, #141414);
	color: rgb(255, 255, 255);
	border-radius: var(--radius, 12px);
	padding: 64px 40px;
	text-align: center;
	margin: 64px 0px;
}

.cta-banner h2 {
	font-size: clamp(22px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0px 0px 16px;
}

.cta-banner p {
	font-size: 16px;
	color: var(--grey-400, #8a8a8a);
	max-width: 480px;
	margin: 0px auto 32px;
	line-height: 1.6;
}

.cta-banner .btn-primary {
	background: var(--green-300, #0bda51);
}

.cta-banner .btn-secondary {
	border-color: var(--grey-700, #2b2b2b);
	color: var(--grey-300, #c4c4c4);
}

.wf-footer {
	border-top: 1.5px solid var(--grey-100, #f0f0f0);
	padding: 32px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.wf-footer-logo {
	width: 100px;
	height: 22px;
	background: var(--grey-200, #e0e0e0);
	border-radius: 4px;
}

.wf-footer-links {
	display: flex;
	gap: 12px;
}

.wf-footer-link {
	width: 64px;
	height: 12px;
	background: var(--grey-100, #f0f0f0);
	border-radius: 4px;
}

.rich-text {
	font-size: 1.125rem;
	line-height: 1.7;
	text-align: left;
}

.rich-text > * + * {
	margin-top: 1em;
}

.rich-text h1 {
	font-size: 2.25rem;
	line-height: 1.2;
	font-weight: 700;
	margin: 0px 0px 0.5em;
	color: var(--color-text, #111827);
}

.rich-text h2 {
	font-size: 1.75rem;
	line-height: 1.25;
	font-weight: 700;
	margin: 1.5em 0px 0.5em;
	color: var(--color-text, #111827);
}

.rich-text h3 {
	font-size: 1.375rem;
	line-height: 1.3;
	font-weight: 600;
	margin: 1.25em 0px 0.5em;
	color: var(--color-text, #111827);
}

.rich-text h4, .rich-text h5, .rich-text h6 {
	font-size: 1.125rem;
	line-height: 1.35;
	font-weight: 600;
	margin: 1em 0px 0.5em;
	color: var(--color-text, #111827);
}

.rich-text p {
	margin: 0px 0px 1em;
}

.rich-text a {
	color: var(--color-primary, #0ea5e9);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rich-text a:hover {
	color: var(--color-primary-dark, #0284c7);
}

.rich-text ul, .rich-text ol {
	margin: 0px 0px 1em;
	padding-left: 1.5em;
}

.rich-text li {
	margin: 0.25em 0px;
}

.rich-text blockquote {
	margin: 1em 0px;
	padding-left: 1em;
	border-left: 3px solid var(--color-border, #e5e7eb);
	color: var(--color-text-muted, #6b7280);
}

.rich-text img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 1em 0px;
}

.rich-text figure {
	margin: 1em 0px;
}

.rich-text figcaption {
	font-size: 0.875rem;
	color: var(--color-text-muted, #6b7280);
	margin-top: 0.5em;
}

.rich-text pre {
	margin: 1em 0px;
	padding: 1em;
	overflow-x: auto;
	background: var(--color-border, #f3f4f6);
	border-radius: 4px;
	font-size: 0.875rem;
}

.rich-text code {
	font-size: 0.9em;
	background: var(--color-border, #f3f4f6);
	padding: 0.15em 0.35em;
	border-radius: 3px;
}

.rich-text pre code {
	background: none;
	padding: 0px;
}

.rich-text hr {
	margin: 2em 0px;
	border-right: 0px;
	border-bottom: 0px;
	border-left: 0px;
	border-image: initial;
	border-top: 1px solid var(--color-border, #e5e7eb);
}

.rich-text strong {
	font-weight: 700;
}

.rich-text em {
	font-style: italic;
}

.rich-text table {
	width: 100%;
	margin: 1.5em 0px;
	border-collapse: collapse;
	font-size: 0.9375em;
}

.rich-text th, .rich-text td {
	padding: 0.75em 1em;
	border: 1px solid var(--color-border, #e5e7eb);
	text-align: left;
}

.rich-text th {
	background: var(--color-border, #f3f4f6);
	font-weight: 600;
}

.rich-text thead th {
	border-bottom-width: 2px;
}

.rich-text tbody tr:nth-child(2n) {
	background: var(--color-border, rgba(0,0,0,0.02));
}

.cmp-hero {
	padding: 96px 24px 72px;
	text-align: center;
	border-bottom: 1px solid var(--grey-100);
}

.cmp-list {
	padding: 72px 24px;
}

.cmp-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 40px;
}

.cmp-card {
	display: flex;
	flex-direction: column;
	border: 1.5px solid var(--grey-200);
	border-radius: var(--radius);
	padding: 28px;
	text-decoration: none;
	color: var(--color-text);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.cmp-card:hover {
	border-color: var(--green-300);
	box-shadow: rgba(11, 218, 81, 0.08) 0px 4px 20px;
}

.cmp-card__tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green-400);
	background: rgb(230, 255, 240);
	border-radius: 100px;
	padding: 3px 10px;
	margin-bottom: 16px;
	align-self: flex-start;
}

.cmp-card__title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0px 0px 10px;
	line-height: 1.2;
}

.cmp-card__excerpt {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.6;
	margin: 0px 0px 20px;
	flex: 1 1 0%;
}

.cmp-card__link {
	font-size: 13px;
	font-weight: 600;
	color: var(--green-400);
	display: flex;
	align-items: center;
	gap: 4px;
}

.cmp-pricing {
	padding: 80px 24px;
	background: var(--grey-100);
}

.cmp-pricing__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
	margin-top: 40px;
}

.cmp-pricing-card {
	background: rgb(255, 255, 255);
	border-radius: var(--radius);
	padding: 28px;
	border: 1.5px solid var(--grey-200);
}

.cmp-pricing-card__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--grey-400);
	margin: 0px 0px 12px;
}

.cmp-pricing-card__title {
	font-size: 15px;
	font-weight: 700;
	margin: 0px 0px 16px;
}

.cmp-opinions {
	padding: 80px 24px;
	background: var(--grey-900);
	color: rgb(255, 255, 255);
}

.cmp-opinions .section-label {
	color: var(--green-200);
}

.cmp-opinions .section-title {
	color: rgb(255, 255, 255);
}

.cmp-opinions__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
	margin-top: 40px;
}

.cmp-opinion-card {
	background: var(--grey-800);
	border-radius: var(--radius);
	padding: 28px;
}

.cmp-opinion-card__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green-200);
	margin: 0px 0px 12px;
}

.cmp-opinion-card__title {
	font-size: 16px;
	font-weight: 700;
	color: rgb(255, 255, 255);
	margin: 0px 0px 16px;
}

.cmp-verdicts {
	padding: 80px 24px;
}

.cmp-verdicts__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
	margin-top: 40px;
}

.cmp-verdict-card {
	border: 1.5px solid var(--grey-200);
	border-radius: var(--radius);
	padding: 28px;
}

.cmp-verdict-card__title {
	font-size: 15px;
	font-weight: 700;
	margin: 0px 0px 16px;
}

.cmp-section {
	padding: 80px 24px;
	border-bottom: 1px solid var(--grey-100);
}

.cmp-section--tinted {
	background: var(--grey-100);
}

.cmp-section--dark {
	background: var(--grey-900);
	color: rgb(255, 255, 255);
}

.cmp-section--dark .section-label {
	color: var(--green-200);
}

.cmp-section--dark .section-title {
	color: rgb(255, 255, 255);
}

.verdict-embed {
	display: flex;
	gap: 12px;
	margin: 24px 0px;
}

.verdict-card {
	flex: 1 1 0%;
	min-width: 200px;
	border-radius: var(--radius);
	padding: 22px 24px;
	border: 1.5px solid var(--grey-200);
}

.verdict-card--competitor {
	background: rgb(255, 255, 255);
}

.verdict-card--opt {
	background: var(--green-300);
	border-color: var(--green-300);
}

.verdict-card__heading {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-bottom: 14px;
}

.verdict-card--competitor .verdict-card__heading {
	color: var(--grey-500);
}

.verdict-card--opt .verdict-card__heading {
	color: rgb(255, 255, 255);
}

.verdict-card__list {
	margin: 0px;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.7;
	list-style: disc;
}

.verdict-card--competitor .verdict-card__list {
	color: var(--grey-700);
}

.verdict-card--opt .verdict-card__list {
	color: rgb(255, 255, 255);
}

.verdict-card--opt .verdict-card__list li::marker {
	color: var(--green-600);
}

.cmp-why {
	padding: 80px 24px;
	background: var(--grey-100);
}

.cmp-why__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-top: 40px;
}

.cmp-why__item {
	background: rgb(255, 255, 255);
	border-radius: var(--radius);
	padding: 24px;
}

.cmp-why__dot {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: var(--green-300);
	opacity: 0.25;
	margin-bottom: 14px;
}

.cmp-why__item h3 {
	font-size: 15px;
	font-weight: 700;
	margin: 0px 0px 8px;
}

.cmp-why__item p {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.6;
	margin: 0px;
}

.cmp-embed-body {
	font-size: 14px;
	line-height: 1.6;
	color: var(--grey-600);
}

.cmp-embed-body p {
	margin: 0px 0px 10px;
}

.cmp-embed-body ul {
	margin: 0px 0px 10px;
	padding-left: 18px;
}

.cmp-embed-body li {
	margin-bottom: 4px;
}

.cmp-opinion-card .cmp-embed-body {
	color: var(--grey-400);
}

.cmp-verdict-card .cmp-embed-body {
	color: var(--grey-500);
}

.pricing-embed {
	margin: 24px 0px;
}

.pricing-embed__cards {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.pricing-card {
	flex: 1 1 0%;
	min-width: 240px;
	border: 1.5px solid var(--grey-200);
	border-radius: var(--radius);
	padding: 24px;
	background: var(--grey-50, #fafafa);
}

.pricing-card__label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--grey-500);
	margin-bottom: 8px;
}

.pricing-card__price {
	font-size: 32px;
	font-weight: 700;
	color: var(--grey-900);
	margin-bottom: 24px;
	line-height: 1.1;
}

.pricing-card__cadence {
	font-size: 15px;
	font-weight: 400;
	color: var(--grey-500);
}

.pricing-card__list {
	margin: 16px 0px 0px;
	padding-left: 18px;
	font-size: 14px;
	color: var(--grey-700);
	line-height: 1.7;
}

.pricing-card__list li {
	margin-bottom: 2px;
}

.pricing-embed__note {
	font-size: 13px;
	color: var(--grey-500);
	margin: 12px 0px 0px;
}

.opinion-embed {
	border: 1.5px solid var(--grey-200);
	border-radius: var(--radius);
	padding: 24px;
	background: var(--grey-50, #fafafa);
	margin: 24px 0px;
}

.opinion-embed__label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--grey-500);
	margin-bottom: 12px;
}

.opinion-embed__body p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--grey-800);
	margin: 0px 0px 12px;
}

.opinion-embed__body p:last-child {
	margin-bottom: 0px;
	color: var(--grey-700);
}

.verdict-card.verdict-card--opt {
	background-color: var(--green-600);
	border-color: var(--green-600);
	color: rgb(255, 255, 255);
}

.home-hero {
	padding: 128px 24px 0px;
	text-align: center;
	background: var(--grey-950);
	color: rgb(255, 255, 255);
	overflow: hidden;
	text-indent: 12px;
}

.home-hero__badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--green-200);
	border: 1px solid var(--grey-700);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 28px;
}

.home-hero__headline {
	font-size: clamp(38px, 6.5vw, 80px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.04;
	max-width: 920px;
	margin: 0px auto 24px;
}

.home-hero__headline em {
	font-style: normal;
	color: var(--green-200);
}

.home-hero__subtext {
	font-size: 18px;
	color: var(--grey-400);
	max-width: 560px;
	margin: 0px auto 40px;
	line-height: 1.6;
}

.home-hero__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 72px;
}

.home-hero .btn--secondary {
	background: transparent;
	color: var(--grey-300);
	border: 1px solid var(--grey-700);
}

.home-carousel {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, transparent);
}

.home-carousel__track {
	display: flex;
	gap: 20px;
	width: max-content;
	padding: 0px 24px 96px;
	animation: 30s linear 0s infinite normal none running home-scroll;
}

.home-carousel__card {
	width: 220px;
	height: 280px;
	flex-shrink: 0;
	border-radius: var(--radius);
	background: linear-gradient(155deg, var(--grey-800), var(--grey-900));
	border: 1px solid var(--grey-700);
	display: flex;
	align-items: flex-end;
	padding: 16px;
}

.home-carousel__label {
	font-size: 12px;
	font-weight: 600;
	color: var(--grey-400);
	letter-spacing: 0.04em;
}

.home-what {
	padding: 100px 24px;
}

.home-what__intro {
	max-width: 640px;
	margin: 0px 0px 48px;
	font-size: 18px;
	color: var(--grey-500);
	line-height: 1.7;
}

.home-what__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.home-what__item {
	padding: 28px;
	border: 1px solid var(--grey-200);
	border-radius: var(--radius);
}

.home-what__index {
	font-size: 13px;
	font-weight: 700;
	color: var(--green-400);
	margin-bottom: 16px;
}

.home-what__item h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 10px;
}

.home-what__item p {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.6;
}

.home-who {
	padding: 100px 24px;
	background: var(--grey-100);
}

.home-who__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	margin-top: 44px;
}

.home-who__card {
	background: rgb(255, 255, 255);
	border-radius: var(--radius);
	padding: 28px;
	border: 1px solid var(--grey-200);
}

.home-who__num {
	font-size: 13px;
	font-weight: 700;
	color: var(--grey-300);
	margin-bottom: 18px;
}

.home-who__card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.home-who__card p {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.6;
}

.home-split {
	padding: 100px 24px;
}

.home-split__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.home-split p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--grey-500);
}

.home-split__media {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	background: linear-gradient(155deg, var(--grey-100), var(--grey-200));
	border: 1px solid var(--grey-200);
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-split__media-label {
	font-size: 13px;
	color: var(--grey-400);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.home-split__list {
	margin: 28px 0px 0px;
	padding: 0px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.home-split__list li {
	display: flex;
	gap: 12px;
	font-size: 15px;
	color: var(--grey-600);
	line-height: 1.5;
}

.home-split__list li::before {
	content: "→";
	color: var(--green-400);
	font-weight: 400;
	flex-shrink: 0;
}

.home-split--dark {
	background: var(--grey-950);
	color: rgb(255, 255, 255);
}

.home-split--dark .section-label {
	color: var(--green-200);
}

.home-split--dark .section-title {
	color: rgb(255, 255, 255);
}

.home-split--dark p {
	color: var(--grey-400);
}

.home-split--dark .home-split__list li {
	color: var(--grey-300);
}

.home-split--dark .home-split__media {
	background: linear-gradient(155deg, var(--grey-800), var(--grey-900));
	border-color: var(--grey-700);
}

.home-split--dark .home-split__media-label {
	color: var(--grey-500);
}

.home-pros {
	padding: 110px 24px 100px;
	background: var(--grey-950);
	color: rgb(255, 255, 255);
	text-align: center;
	border-style: none;
	border-width: 1px;
	border-color: rgb(255, 255, 255);
}

.home-pros .section-label {
	color: var(--green-200);
}

.home-pros .section-title {
	color: rgb(255, 255, 255);
	max-width: 640px;
	margin: 0px auto 48px;
}

.home-pros__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	text-align: left;
	margin-bottom: 64px;
}

.home-pros__card {
	background: var(--grey-900);
	border: 1px solid var(--grey-800);
	border-radius: var(--radius);
	padding: 26px;
}

.home-pros__tag {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--green-300);
	margin-bottom: 12px;
}

.home-pros__card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.home-pros__card p {
	font-size: 13px;
	color: var(--grey-400);
	line-height: 1.6;
	margin: 0px;
}

.home-pros__cta {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.home-pros .btn--secondary {
	background: transparent;
	color: var(--grey-300);
	border: 1px solid var(--grey-700);
}

.blog-hero {
	padding: 96px 24px 72px;
	background: var(--grey-950);
	color: rgb(255, 255, 255);
	text-align: center;
	border-bottom: 1px solid var(--grey-800);
}

.blog-hero__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--green-200);
	border: 1px solid var(--grey-700);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 24px;
}

.blog-hero h1 {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.08;
	margin: 0px auto 20px;
	max-width: 680px;
}

.blog-hero p {
	font-size: 18px;
	color: var(--grey-400);
	max-width: 500px;
	margin: 0px auto;
	line-height: 1.6;
}

.blog-list {
	padding: 80px 24px 100px;
}

.blog-list__inner {
	max-width: 1000px;
	margin: 0px auto;
}

.blog-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.blog-card {
	display: flex;
	flex-direction: column;
	border: 1.5px solid var(--grey-200);
	border-radius: var(--radius);
	padding: 28px;
	text-decoration: none;
	color: var(--color-text);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.blog-card:hover {
	border-color: var(--green-300);
	box-shadow: rgba(11, 218, 81, 0.08) 0px 4px 20px;
}

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

.blog-card__author {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--green-400);
}

.blog-card__dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--grey-300);
	flex-shrink: 0;
}

.blog-card__date {
	font-size: 12px;
	color: var(--grey-400);
}

.blog-card__title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0px 0px 12px;
}

.blog-card__excerpt {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.65;
	margin: 0px 0px 24px;
	flex: 1 1 0%;
}

.blog-card__cta {
	font-size: 13px;
	font-weight: 600;
	color: var(--green-400);
	display: flex;
	align-items: center;
	gap: 4px;
}

.blog-card__arrow {
	transition: transform 0.15s;
}

.blog-card:hover .blog-card__arrow {
	transform: translateX(3px);
}

.post-hero {
	background: var(--grey-950);
	color: rgb(255, 255, 255);
	padding: 96px 24px 80px;
	border-bottom: 1px solid var(--grey-800);
}

.post-hero__inner {
	max-width: 720px;
	margin: 0px auto;
}

.post-hero__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}

.post-hero__author {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green-200);
}

.post-hero__dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--grey-600);
	flex-shrink: 0;
}

.post-hero__date {
	font-size: 12px;
	color: var(--grey-500);
}

.post-hero__title {
	font-size: clamp(28px, 5vw, 52px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.08;
	margin: 0px 0px 20px;
	color: rgb(255, 255, 255);
}

.post-hero__excerpt {
	font-size: 18px;
	color: var(--grey-400);
	line-height: 1.6;
	margin: 0px;
	max-width: 600px;
}

.post-body {
	padding: 80px 24px 96px;
}

.post-body__inner {
	max-width: 720px;
	margin: 0px auto;
}

.post-body__content {
	font-size: 17px;
	line-height: 1.8;
	color: var(--grey-700);
}

.post-body__content h2 {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 2em 0px 0.6em;
	color: var(--grey-950);
}

.post-body__content h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 1.75em 0px 0.5em;
	color: var(--grey-900);
}

.post-body__content p {
	margin: 0px 0px 1.2em;
}

.post-body__content ul, .post-body__content ol {
	padding-left: 1.5em;
	margin: 0px 0px 1.2em;
}

.post-body__content li {
	margin-bottom: 0.4em;
}

.post-body__content blockquote {
	border-left: 3px solid var(--green-300);
	margin: 1.5em 0px;
	padding: 0.5em 0px 0.5em 1.25em;
	color: var(--grey-500);
	font-style: italic;
}

.post-body__content code {
	font-size: 0.88em;
	background: var(--grey-100);
	border-radius: 4px;
	padding: 0.15em 0.4em;
}

.post-body__content pre {
	background: var(--grey-950);
	color: var(--green-200);
	border-radius: var(--radius);
	padding: 1.25em 1.5em;
	overflow-x: auto;
	margin: 1.5em 0px;
}

.post-body__content pre code {
	background: none;
	padding: 0px;
	color: inherit;
}

.post-next {
	background: var(--grey-100);
	padding: 80px 24px 96px;
	border-top: 1px solid var(--grey-200);
}

.post-next__inner {
	max-width: 1000px;
	margin: 0px auto;
}

.post-next__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green-400);
	margin: 0px 0px 8px;
}

.post-next__heading {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0px 0px 40px;
	color: var(--grey-950);
}

.post-next__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.post-next__card {
	display: flex;
	flex-direction: column;
	background: rgb(255, 255, 255);
	border: 1.5px solid var(--grey-200);
	border-radius: var(--radius);
	padding: 28px;
	text-decoration: none;
	color: var(--color-text);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.post-next__card:hover {
	border-color: var(--green-300);
	box-shadow: rgba(11, 218, 81, 0.08) 0px 4px 20px;
}

.post-next__card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.post-next__card-author {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--green-400);
}

.post-next__card-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--grey-300);
	flex-shrink: 0;
}

.post-next__card-date {
	font-size: 12px;
	color: var(--grey-400);
}

.post-next__card-title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0px 0px 12px;
}

.post-next__card-excerpt {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.65;
	margin: 0px 0px 24px;
	flex: 1 1 0%;
}

.post-next__card-cta {
	font-size: 13px;
	font-weight: 600;
	color: var(--green-400);
	display: flex;
	align-items: center;
	gap: 4px;
}

.post-next__card-arrow {
	transition: transform 0.15s;
}

.post-next__card:hover .post-next__card-arrow {
	transform: translateX(3px);
}

.navbar {
	position: sticky;
	top: 0px;
	z-index: 100;
	background: rgb(255, 255, 255);
	border-bottom: 1px solid var(--grey-200);
}

.navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 68px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.navbar__logo {
	display: inline-flex;
	align-items: center;
	font-weight: 800;
	font-size: 18px;
	letter-spacing: -0.02em;
	color: var(--color-text);
	text-decoration: none;
	flex-shrink: 0;
}

.navbar__menu {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1 1 0%;
	padding-left: 24px;
	justify-content: flex-end;
}

.navbar__item {
	position: relative;
	anchor-name: --anchor-navbar__item;
}

.navbar__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 9px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--grey-600);
	text-decoration: none;
	background: transparent;
	transition: background 0.15s, color 0.15s;
	font-variation-settings: "wght" 488;
}

.navbar__link:hover {
	background: var(--grey-100);
	color: var(--color-text);
}

.navbar__chevron {
	font-size: 10px;
	transition: transform 0.15s;
	color: var(--grey-400);
}

.navbar__item:hover .navbar__chevron, .navbar__item:focus-within .navbar__chevron {
	transform: rotate(180deg);
}

.navbar__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-shrink: 0;
}

.navbar__login {
	font-size: 14px;
	font-weight: 600;
	color: var(--grey-600);
	text-decoration: none;
	transition: color 0.15s;
}

.navbar__login:hover {
	color: var(--color-text);
}

.navbar__cta {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 8px;
	background: var(--green-300);
	color: rgb(255, 255, 255);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.15s;
}

.navbar__cta:hover {
	background: var(--green-400);
}

.navbar__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: var(--grey-600);
	cursor: pointer;
}

.navbar__toggle:hover {
	background: var(--grey-100);
	color: var(--color-text);
}

.navbar__mobile-menu {
	position: fixed;
	inset: 0px;
	margin: 0px;
	width: 100%;
	height: 100dvh;
	max-width: none;
	max-height: none;
	border: none;
	padding: 0px;
	border-radius: 0px;
	background: rgb(255, 255, 255);
	color: var(--grey-900);
	overflow-y: auto;
	overscroll-behavior: contain;
	box-shadow: none;
}

.navbar__mobile-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0px auto;
	height: 68px;
	padding: 14px 24px;
	border-bottom: 1px solid var(--grey-200);
}

.navbar__mobile-logo {
	color: var(--color-text);
	text-decoration: none;
	display: inline-flex;
}

.navbar__mobile-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: var(--grey-600);
	cursor: pointer;
}

.navbar__mobile-close:hover {
	background: var(--grey-100);
	color: var(--color-text);
}

.navbar__mobile-links {
	display: flex;
	flex-direction: column;
	padding: 16px 16px 32px;
}

.navbar__mobile-link {
	display: block;
	padding: 12px 10px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--grey-800);
	text-decoration: none;
}

.navbar__mobile-link:hover {
	background: var(--grey-100);
	color: var(--color-text);
}

.navbar__mobile-label {
	padding: 16px 10px 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--grey-500);
}

.navbar__mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--grey-200);
}

.navbar__mobile-login {
	display: block;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid var(--grey-300);
	font-size: 15px;
	font-weight: 600;
	color: var(--grey-800);
	text-align: center;
	text-decoration: none;
}

.navbar__mobile-cta {
	display: block;
	padding: 12px;
	border-radius: 8px;
	background: var(--green-300);
	color: rgb(255, 255, 255);
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.navbar[data-theme="dark"] .navbar__toggle {
	color: rgb(255, 255, 255);
}

.navbar[data-theme="dark"] .navbar__toggle:hover {
	background: var(--grey-800);
	color: rgb(255, 255, 255);
}

.navbar[data-theme="dark"] .navbar__mobile-menu {
	background: var(--grey-950);
	color: var(--grey-100);
}

.navbar[data-theme="dark"] .navbar__mobile-head {
	border-bottom-color: var(--grey-800);
}

.navbar[data-theme="dark"] .navbar__mobile-logo {
	color: rgb(255, 255, 255);
}

.navbar[data-theme="dark"] .navbar__mobile-close {
	color: var(--grey-300);
}

.navbar[data-theme="dark"] .navbar__mobile-close:hover {
	background: var(--grey-800);
	color: rgb(255, 255, 255);
}

.navbar[data-theme="dark"] .navbar__mobile-link {
	color: var(--grey-300);
}

.navbar[data-theme="dark"] .navbar__mobile-link:hover {
	background: var(--grey-800);
	color: rgb(255, 255, 255);
}

.navbar[data-theme="dark"] .navbar__mobile-label {
	color: var(--grey-600);
}

.navbar[data-theme="dark"] .navbar__mobile-login {
	border-color: var(--grey-700);
	color: var(--grey-300);
}

.navbar[data-theme="dark"] .navbar__mobile-actions {
	border-top-color: var(--grey-800);
}

.form-textarea {
	width: 100%;
	min-height: 11.25rem;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: rgb(0, 0, 0);
	background-color: rgb(255, 255, 255);
	border: 1px solid rgb(0, 0, 0);
	border-radius: 0px;
	resize: vertical;
}

.form-textarea::placeholder {
	color: rgb(102, 102, 102);
}

.form-textarea:focus {
	outline: none;
	box-shadow: rgb(0, 0, 0) 0px 0px 0px 1px;
}

.div-1 {
	padding: 49px 23px 23px;
	display: flex;
	flex-flow: row;
	gap: 2rem;
}

.div-2 {
	display: flex;
	flex-flow: column;
}

.navbar__logo-img {
	height: 28px;
	width: auto;
	display: block;
}

.navbar__logo-img--dark {
	display: none;
}

.site-footer {
	background: var(--grey-950);
	color: rgb(196, 196, 196);
	padding-top: 72px;
	border-style: none;
	border-width: 1px;
	border-color: rgb(196, 196, 196);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 64px;
	padding-bottom: 64px;
	border-bottom: 1px solid var(--grey-800);
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.site-footer__logo {
	display: inline-flex;
	text-decoration: none;
}

.site-footer__logo-img {
	height: 26px;
	width: auto;
}

.site-footer__tagline {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.6;
	margin: 0px;
	max-width: 220px;
}

.site-footer__cta-btn {
	display: inline-block;
	padding: 10px 20px;
	background: var(--green-300);
	color: var(--grey-950);
	font-size: 14px;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	align-self: flex-start;
	transition: background 0.15s;
}

.site-footer__cta-btn:hover {
	background: var(--green-200);
}

.site-footer__nav {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 32px;
}

.site-footer__col-heading {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--grey-500);
	margin: 0px 0px 16px;
}

.site-footer__links {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer__link {
	font-size: 14px;
	color: var(--grey-400);
	text-decoration: none;
	transition: color 0.15s;
}

.site-footer__link:hover {
	color: rgb(255, 255, 255);
}

.site-footer__bottom {
	padding: 20px 0px;
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-footer__copy {
	font-size: 13px;
	margin: 0px;
}

.site-footer__bottom-links {
	display: flex;
	gap: 20px;
}

.site-footer__bottom-link {
	font-size: 13px;
	text-decoration: none;
	transition: color 0.15s;
	color: var(--grey-500);
}

.site-footer__bottom-link:hover {
	color: var(--grey-400);
}

.navbar__link--btn {
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-variant: inherit;
	font-stretch: inherit;
	font-optical-sizing: inherit;
	font-size-adjust: inherit;
	font-kerning: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
	padding: 6px 10px;
}

.navbar__popover {
	position: fixed;
	right: unset;
	bottom: unset;
	top: 60px;
	transform: translateX(-50%);
	width: 480px;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	border: 1px solid var(--grey-200, #e5e7eb);
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 32px;
	background: rgb(255, 255, 255);
	color: var(--grey-900, #111827);
	opacity: 0;
	translate: 0px -6px;
	transition: opacity 0.15s, translate 0.15s, display 0.15s allow-discrete;
	inset-inline-start: 60%;
}

.navbar__popover--narrow {
	width: 340px;
}

.navbar__popover:popover-open {
	opacity: 1;
	translate: 0px;
}

.navbar__popover-features {
	display: flex;
	flex-direction: column;
	padding: 8px;
	gap: 2px;
}

.navbar__feature-link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: background 0.1s;
}

.navbar__feature-link:hover {
	background: var(--grey-50, #f9fafb);
}

.navbar__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--grey-100, #f3f4f6);
	color: var(--grey-700, #374151);
}

.navbar__feature-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--grey-900, #111827);
	line-height: 1.3;
	margin-bottom: 2px;
}

.navbar__feature-desc {
	font-size: 13px;
	color: var(--grey-500, #6b7280);
	line-height: 1.4;
}

.navbar__popover-footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0px;
	padding: 16px;
	background: var(--grey-50, #f9fafb);
	border-top: 1px solid var(--grey-200, #e5e7eb);
}

.navbar__popover-col {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 4px 8px;
}

.navbar__popover-col-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--grey-400, #9ca3af);
	margin-bottom: 4px;
}

.navbar__popover-col-link {
	font-size: 13px;
	color: var(--grey-700, #374151);
	text-decoration: none;
	line-height: 1.6;
	transition: color 0.1s;
}

.navbar__popover-col-link:hover {
	color: var(--grey-900, #111827);
}

.aff-label {
	font-family: var(--font-primary, "DM Sans", sans-serif);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--green-400);
	margin: 0px 0px 14px;
}

.aff-label--on-dark {
	color: var(--green-200);
}

.aff-title {
	font-family: var(--font-primary, "DM Sans", sans-serif);
	font-weight: 700;
	font-size: clamp(26px, 3.6vw, 42px);
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0px 0px 20px;
	max-width: 780px;
}

.aff-title--on-dark {
	color: rgb(255, 255, 255);
}

.aff-title--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	max-width: 640px;
}

.aff-poster {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-width: 0px;
	min-height: 220px;
	color: rgb(255, 255, 255);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: rgba(0, 0, 0, 0.35) 0px 24px 48px -28px;
}

.aff-poster[data-tone="1"] {
	background: var(--aff-tone-1);
}

.aff-poster[data-tone="2"] {
	background: var(--aff-tone-2);
}

.aff-poster[data-tone="3"] {
	background: var(--aff-tone-3);
}

.aff-poster[data-tone="4"] {
	background: var(--aff-tone-4);
}

.aff-poster[data-tone="5"] {
	background: var(--aff-tone-5);
}

.aff-poster[data-tone="6"] {
	background: var(--aff-tone-6);
}

.aff-poster[data-tone="7"], .aff-feature-card[data-tone="7"], .aff-switch__panel[data-tone="7"] {
	background: var(--aff-tone-7);
	color: var(--grey-900);
}

.aff-poster[data-tone="8"], .aff-feature-card[data-tone="8"], .aff-switch__panel[data-tone="8"] {
	background: var(--aff-tone-8);
	color: var(--green-950);
}

.aff-poster__label {
	position: relative;
	z-index: 1;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
}

.aff-poster--tall {
	min-height: 420px;
}

.aff-poster__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 14px 16px 0px;
	flex-shrink: 0;
}

.aff-poster__bar i {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	font-style: normal;
}

.aff-poster[data-tone="7"] .aff-poster__bar i, .aff-switch__panel[data-tone="7"] .aff-poster__bar i, .aff-feature-card[data-tone="7"] .aff-poster__bar i {
	background: rgba(0, 0, 0, 0.18);
}

.aff-poster__canvas {
	flex: 1 1 auto;
	min-width: 0px;
	margin: 10px 12px 12px;
	border-radius: 13px;
	border: 1.5px dashed rgba(255, 255, 255, 0.32);
	background: rgba(0, 0, 0, 0.14);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	padding: 20px;
	min-height: 0px;
}

.aff-poster[data-tone="7"] .aff-poster__canvas, .aff-switch__panel[data-tone="7"] .aff-poster__canvas, .aff-feature-card[data-tone="7"] .aff-poster__canvas {
	border-color: rgba(0, 0, 0, 0.18);
	background: rgba(0, 0, 0, 0.04);
}

.aff-poster__icon {
	opacity: 0.75;
	flex-shrink: 0;
}

.aff-poster__hint {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.55;
}

.aff-poster--tall .aff-poster__canvas {
	margin: 14px 16px 16px;
}

.aff-hero {
	position: relative;
	padding-top: 132px;
	padding-right: 24px;
	padding-left: 24px;
	text-align: center;
	background: var(--grey-950);
	color: rgb(255, 255, 255);
	overflow: hidden;
	border-style: none;
	border-width: 1px;
	border-color: rgb(255, 255, 255);
}

.aff-hero::before {
	content: "";
	position: absolute;
	top: -220px;
	left: 50%;
	width: 900px;
	height: 560px;
	transform: translateX(-50%);
	background: radial-gradient(closest-side, rgba(11, 218, 81, 0.35), transparent 70%);
	filter: blur(10px);
	pointer-events: none;
	z-index: 0;
}

.aff-hero > * {
	position: relative;
	z-index: 1;
}

.aff-hero__pill {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgb(145, 145, 145);
	border-color: rgb(72, 72, 72);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 26px;
	background-color: rgb(33, 33, 33);
}

.aff-hero__headline {
	font-family: var(--font-primary, "DM Sans", sans-serif);
	font-weight: 700;
	font-size: clamp(38px, 6.4vw, 78px);
	letter-spacing: -0.03em;
	line-height: 1.05;
	max-width: 920px;
	margin: 0px auto 24px;
}

.aff-hero__headline em {
	font-style: normal;
	color: var(--green-200);
}

.aff-hero__subtext {
	font-size: 18px;
	color: var(--grey-400);
	max-width: 560px;
	margin: 0px auto 36px;
	line-height: 1.6;
}

.aff-hero__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.aff-hero .btn--secondary {
	background: transparent;
	color: var(--grey-300);
	border: 1px solid var(--grey-700);
}

.aff-hero__note {
	font-size: 13px;
	color: var(--grey-500);
	margin: 0px 0px 56px;
}

.aff-hero__stage {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-bottom: 90px;
	mask-image: linear-gradient(90deg, transparent, rgb(0, 0, 0) 6%, rgb(0, 0, 0) 94%, transparent);
}

.aff-hero-swiper {
	overflow: visible;
	padding: 0px 24px;
	width: 100%;
}

.aff-hero-swiper .swiper-wrapper {
	transition-timing-function: linear;
}

.aff-hero-swiper .swiper-slide {
	width: 240px;
}

.aff-hero-swiper .aff-poster {
	min-height: 168px;
}

.aff-switch {
	padding: 96px 0px 0px;
	background: var(--grey-950);
	color: rgb(255, 255, 255);
	text-align: center;
}

.aff-switch .aff-title {
	margin-left: auto;
	margin-right: auto;
	max-width: 680px;
}

.aff-switch__sub {
	font-size: 16px;
	color: var(--grey-400);
	max-width: 520px;
	margin: 0px auto 36px;
	line-height: 1.6;
}

.aff-tabs {
	display: inline-flex;
	gap: 4px;
	padding: 5px;
	border-radius: 100px;
	background: var(--grey-900);
	border: 1px solid var(--grey-800);
	margin-bottom: 40px;
}

.aff-tabs__btn {
	border: none;
	background: transparent;
	color: var(--grey-400);
	font-size: 14px;
	font-weight: 600;
	padding: 9px 20px;
	border-radius: 100px;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s, color 0.15s;
}

.aff-tabs__btn.is-active {
	background-attachment: initial;
	background-origin: initial;
}

.aff-switch__stage {
	aspect-ratio: 16 / 9;
	max-width: 1100px;
	margin: 0px auto;
	border-radius: var(--radius) var(--radius) 0px 0px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.aff-switch__stage swiper-container {
	flex: 1 1 0%;
	min-height: 0px;
}

.aff-switch__panel {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	color: rgb(255, 255, 255);
}

.aff-switch__panel[data-tone="1"] {
	background: var(--aff-tone-1);
}

.aff-switch__panel[data-tone="2"] {
	background: var(--aff-tone-2);
}

.aff-switch__panel[data-tone="3"] {
	background: var(--aff-tone-3);
}

.aff-switch__panel[data-tone="4"] {
	background: var(--aff-tone-4);
}

.aff-switch__panel[data-tone="5"] {
	background: var(--aff-tone-5);
}

.aff-switch__panel[data-tone="6"] {
	background: var(--aff-tone-6);
}

.aff-switch__panel .aff-poster__canvas {
	margin: 16px 20px 20px;
}

.aff-switch__panel .aff-poster__label {
	font-size: 16px;
	max-width: 420px;
}

.aff-standard {
	padding: 100px 0px;
}

.aff-standard__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.aff-standard__nav {
	display: flex;
	align-items: center;
	gap: 14px;
}

.aff-standard-prev, .aff-standard-next, .aff-testimonial-prev, .aff-testimonial-next, .aff-blog-prev, .aff-blog-next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--grey-200);
	background: rgb(255, 255, 255);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--grey-700);
	transition: border-color 0.15s, color 0.15s;
	flex-shrink: 0;
}

.aff-standard-prev:hover, .aff-standard-next:hover, .aff-testimonial-prev:hover, .aff-testimonial-next:hover, .aff-blog-prev:hover, .aff-blog-next:hover {
	border-color: var(--green-300);
	color: var(--green-400);
}

.aff-standard-count, .aff-testimonial-count {
	font-size: 13px;
	font-weight: 600;
	color: var(--grey-400);
	min-width: 46px;
	text-align: center;
}

.aff-standard-swiper {
	overflow: hidden;
	padding-bottom: 8px;
}

.aff-feature-card {
	position: relative;
	border-radius: 20px;
	padding: 28px;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	color: rgb(255, 255, 255);
	background: var(--grey-800);
}

.aff-feature-card[data-tone="1"] {
	background: var(--aff-tone-1);
}

.aff-feature-card[data-tone="2"] {
	background: var(--aff-tone-2);
}

.aff-feature-card[data-tone="3"] {
	background: var(--aff-tone-3);
}

.aff-feature-card[data-tone="4"] {
	background: var(--aff-tone-4);
}

.aff-feature-card[data-tone="5"] {
	background: var(--aff-tone-5);
}

.aff-feature-card[data-tone="6"] {
	background: var(--aff-tone-6);
}

.aff-feature-card__num {
	position: absolute;
	top: 24px;
	right: 28px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	opacity: 0.55;
}

.aff-feature-card h3 {
	font-size: 21px;
	font-weight: 700;
	margin: 0px 40px 12px 0px;
}

.aff-feature-card p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0px 0px 20px;
	max-width: 360px;
}

.aff-feature-card[data-tone="7"] p, .aff-feature-card[data-tone="8"] p {
	color: rgba(0, 0, 0, 0.65);
}

.aff-feature-card__media {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 140px;
	justify-content: flex-end;
}

.aff-feature-card__media .aff-poster__canvas {
	margin: 8px 0px 0px;
}

.aff-welcome {
	padding: 100px 24px;
	background: var(--grey-950);
	color: rgb(255, 255, 255);
}

.aff-welcome__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.aff-welcome__text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--grey-400);
	margin: 0px 0px 24px;
}

.aff-list {
	list-style: none;
	margin: 0px 0px 32px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	color: rgb(21, 21, 22);
}

.aff-list li {
	display: flex;
	gap: 12px;
	font-size: 15px;
	color: var(--grey-400);
	line-height: 1.5;
}

.aff-list li::before {
	content: "→";
	color: var(--green-300);
	flex-shrink: 0;
}

.aff-marquee {
	overflow: hidden;
	background: var(--green-300);
	padding: 18px 0px;
}

.aff-marquee__track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: 22s linear 0s infinite normal none running aff-marquee-scroll;
}

.aff-marquee__track span {
	font-family: var(--font-primary, "DM Sans", sans-serif);
	font-weight: 700;
	font-size: 20px;
	color: var(--green-900);
	white-space: nowrap;
}

.aff-testimonial {
	padding: 100px 24px;
	text-align: center;
}

.aff-testimonial .aff-title {
	margin-left: auto;
	margin-right: auto;
}

.aff-testimonial__row {
	display: grid;
	grid-template-columns: 200px 1fr 200px;
	gap: 24px;
	align-items: center;
	margin-top: 48px;
}

.aff-testimonial__side {
	min-height: 260px;
}

.aff-testimonial__stage {
	text-align: left;
}

.aff-quote {
	padding: 12px;
}

.aff-quote__mark {
	display: block;
	font-family: Georgia, serif;
	font-size: 48px;
	line-height: 1;
	color: var(--green-300);
	margin: 0px 0px 8px;
}

.aff-quote blockquote {
	font-family: var(--font-primary, "DM Sans", sans-serif);
	font-size: clamp(20px, 2.6vw, 28px);
	font-weight: 600;
	line-height: 1.35;
	margin: 0px 0px 24px;
	color: var(--grey-900);
}

.aff-quote__author {
	font-size: 14px;
	color: var(--grey-500);
	margin: 0px;
}

.aff-quote__author a {
	color: var(--green-400);
	font-weight: 600;
	text-decoration: none;
}

.aff-testimonial__nav {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
}

.aff-zero {
	padding: 100px 24px;
	background: var(--grey-100);
	text-align: center;
}

.aff-zero__sub {
	font-size: 16px;
	color: var(--grey-500);
	max-width: 560px;
	margin: 0px auto 48px;
	line-height: 1.6;
}

.aff-zero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	text-align: left;
	margin-bottom: 32px;
}

.aff-zero__col {
	background: rgb(255, 255, 255);
	border: 1px solid var(--grey-200);
	border-radius: var(--radius);
	padding-top: 24px;
	padding-left: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	overflow: hidden;
}

.aff-zero__col h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0px;
}

.aff-zero__col p {
	font-size: 14px;
	color: var(--grey-500);
	margin: 0px;
	line-height: 1.5;
}

.aff-zero__col .btn {
	align-self: flex-start;
}

.aff-zero__col .aff-poster {
	min-height: 160px;
	margin-top: 8px;
}

.aff-zero__note {
	font-size: 13px;
	color: var(--grey-500);
	margin: 0px;
}

.aff-zero__note a {
	color: var(--green-400);
	font-weight: 600;
	text-decoration: none;
}

.aff-agent {
	padding: 100px 24px;
}

.aff-agent__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.aff-agent__pill {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--grey-500);
	background: var(--grey-100);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 20px;
}

.aff-accordion {
	display: flex;
	flex-direction: column;
	margin: 8px 0px 32px;
}

.aff-accordion__item {
	border-bottom: 1px solid var(--grey-200);
}

.aff-accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: none;
	border: none;
	cursor: pointer;
	padding: 20px 0px;
	font-family: inherit;
	font-size: 17px;
	font-weight: 600;
	color: var(--color-text);
	text-align: left;
}

.aff-accordion__icon {
	font-size: 20px;
	color: var(--grey-400);
	flex-shrink: 0;
	margin-left: 16px;
}

.aff-accordion__panel {
	display: none;
	padding: 0px 0px 20px;
}

.aff-accordion__item.is-open .aff-accordion__panel {
	display: block;
}

.aff-accordion__panel p {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.6;
	margin: 0px;
	max-width: 460px;
}

.aff-manifesto {
	position: relative;
	padding: 140px 24px;
	background: var(--grey-950);
	color: rgb(255, 255, 255);
	text-align: center;
	overflow: hidden;
	display: block;
}

.aff-manifesto__inner {
	position: relative;
	z-index: 1;
}

.aff-manifesto__quote {
	font-family: var(--font-primary, "DM Sans", sans-serif);
	font-weight: 600;
	font-size: clamp(26px, 4vw, 44px);
	line-height: 1.3;
	max-width: 900px;
	margin: 0px auto 40px;
}

.aff-manifesto__quote em {
	font-style: normal;
	color: var(--green-200);
}

.aff-manifesto__corner {
	position: absolute;
	width: 220px;
	min-height: 260px;
	z-index: 0;
	opacity: 0.9;
}

.aff-manifesto__corner--tl {
	top: -40px;
	left: -30px;
	transform: rotate(-6deg);
}

.aff-manifesto__corner--br {
	bottom: -40px;
	right: -30px;
	transform: rotate(6deg);
}

.aff-blog {
	padding: 100px 0px 110px;
}

.aff-blog__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.aff-blog__viewall {
	font-size: 14px;
	font-weight: 600;
	color: var(--green-400);
	text-decoration: none;
	white-space: nowrap;
}

.aff-blog-swiper {
	overflow: hidden;
}

.aff-blog-card {
	display: flex;
	flex-direction: column;
	border: 1.5px solid var(--grey-200);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	color: var(--color-text);
	height: 100%;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.aff-blog-card:hover {
	border-color: var(--green-300);
	box-shadow: rgba(11, 218, 81, 0.08) 0px 4px 20px;
}

.aff-blog-card__media {
	background: var(--aff-tone-2);
	color: rgb(255, 255, 255);
	min-height: 170px;
	display: flex;
	flex-direction: column;
	font-size: 12px;
	font-weight: 700;
}

.aff-blog-card__media .aff-poster__canvas {
	margin: 8px 12px 12px;
}

.aff-blog-card__body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex: 1 1 0%;
}

.aff-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 12px;
	color: var(--grey-400);
}

.aff-blog-card__meta span:first-child {
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--green-400);
}

.aff-blog-card__dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--grey-300);
	flex-shrink: 0;
}

.aff-blog-card__body h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0px 0px 10px;
	line-height: 1.3;
}

.aff-blog-card__body p {
	font-size: 14px;
	color: var(--grey-500);
	line-height: 1.6;
	margin: 0px;
}

.aff-blog__nav {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 32px;
}

.tab-panel.aff-switch__panel {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.tabs.aff-switch__tabs {
	flex-flow: column;
	align-items: center;
}

.tabs-content.aff-switch__stage {
	width: 100%;
	height: 100%;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.tabs-content.aff-switch__stage swiper-slide {
	height: 100%;
}

.aff-switch__panel--iframe {
	overflow: hidden;
	padding: 0px !important;
}

.aff-switch__panel--iframe iframe {
	width: 100%;
	height: 100%;
	border: 0px;
	display: block;
	pointer-events: none;
}

.slide-active {
	background-color: rgba(46, 46, 46, 0);
}

.tabs-nav.aff-tabs {
	width: 100%;
}

.is-active {
	background-color: rgba(194, 194, 194, 0.137);
}

.tab.aff-tabs__btn.tab-active {
	background-color: rgba(176, 176, 176, 0.106);
}

.iframe {
	width: 100%;
	height: 100%;
}

.video-example {
	margin-bottom: -28px;
	width: 100%;
	height: auto;
}

.slide.aff-feature-card {
	justify-content: space-around;
	height: auto;
}

.slide.aff-feature-card:not(.slide-active) .aff-feature-card__media {
	opacity: 0.6;
}

.aff-welcome__media {
	aspect-ratio: 1 / 1;
}

.aff-poster.aff-poster--tall {
	display: block;
	width: 100%;
	height: 100%;
}

.video-example.is-1x1 {
	height: 100%;
	object-fit: contain;
	aspect-ratio: 1 / 1;
}

.slides-wrapper {
	height: auto;
}

.slide-content {
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}

.comuter-illustration-img {
	width: 100%;
	object-fit: contain;
	object-position: 0% 0%;
	display: block;
}

.picture-3 {
	width: 100%;
	height: auto;
}

.computer-illustration {
	display: block;
}

.container--wide.site-footer__bottom-inner {
	color: var(--grey-500);
}

.pr-plan {
	padding: 100px 24px;
}

.pr-plan__card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0px;
	margin-top: 48px;
	border-radius: 24px;
	overflow: hidden;
	background: var(--grey-950);
	color: rgb(255, 255, 255);
	border: 1px solid var(--grey-800);
}

.pr-plan__header {
	padding: 48px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	border-right: 1px solid var(--grey-800);
}

.pr-plan__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green-200);
	border: 1px solid var(--grey-700);
	border-radius: 100px;
	padding: 6px 16px;
	width: fit-content;
	margin: 0px;
}

.pr-plan__price {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.pr-plan__amount {
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.pr-plan__cadence {
	font-size: 15px;
	color: var(--grey-400);
}

.pr-plan__desc {
	font-size: 15px;
	line-height: 1.6;
	color: var(--grey-400);
	margin: 0px;
	max-width: 380px;
}

.pr-plan__list {
	list-style: none;
	margin: 0px;
	padding: 48px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pr-plan__list li {
	display: flex;
	gap: 12px;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--grey-300);
}

.pr-plan__list li svg {
	flex-shrink: 0;
	color: var(--green-300);
	margin-top: 2px;
}

.pr-why {
	padding: 100px 24px;
	background: var(--grey-100);
}

.pr-why__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 44px;
}

.pr-why__col {
	background: rgb(255, 255, 255);
	border: 1px solid var(--grey-200);
	border-radius: var(--radius);
	padding: 32px;
}

.pr-why__col--accent {
	border-color: var(--green-300);
	box-shadow: rgba(11, 218, 81, 0.12) 0px 4px 24px;
}

.pr-why__col h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0px 0px 6px;
}

.pr-why__col-sub {
	font-size: 14px;
	color: var(--grey-500);
	margin: 0px 0px 20px;
	line-height: 1.5;
}

.pr-why__col ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pr-why__col li {
	display: flex;
	gap: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--grey-700);
}

.pr-why__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin-top: 7px;
	flex-shrink: 0;
	background: var(--grey-300);
	display: inline-block;
}

.pr-why__col--accent .pr-why__dot {
	background: var(--green-300);
}

.pr-calc {
	padding: 100px 24px 110px;
	background: var(--grey-950);
	color: rgb(255, 255, 255);
}

.pr-calc__head {
	text-align: center;
	margin-bottom: 48px;
}

.pr-calc__head .aff-title {
	margin-left: auto;
	margin-right: auto;
}

.pr-calc__sub {
	font-size: 16px;
	color: var(--grey-400);
	max-width: 560px;
	margin: 0px auto;
	line-height: 1.6;
}

.pr-calc__card {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 0px;
	max-width: 1000px;
	margin: 0px auto;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--grey-800);
}

.pr-calc__panel {
	background: var(--grey-900);
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.pr-calc__presets {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pr-preset {
	border: 1px solid var(--grey-700);
	background: transparent;
	color: var(--grey-300);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 100px;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.pr-preset:hover {
	border-color: var(--green-300);
	color: rgb(255, 255, 255);
}

.pr-preset.is-active {
	background: var(--green-300);
	border-color: var(--green-300);
	color: var(--green-950);
}

.pr-calc__row {
	display: flex;
	flex-direction: column;
}

.pr-calc__row-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 600;
	color: var(--grey-200);
	gap: 8px;
}

.pr-calc__pill {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--green-200);
	background: rgba(11, 218, 81, 0.12);
	border-radius: 100px;
	padding: 3px 8px;
	margin-left: 8px;
}

.pr-calc__value {
	font-weight: 700;
	color: var(--green-200);
	white-space: nowrap;
}

.pr-slider {
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 999px;
	background: var(--grey-700);
	outline: none;
	margin: 14px 0px 6px;
	cursor: pointer;
}

.pr-slider::-webkit-slider-thumb {
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--green-300);
	border: 3px solid var(--grey-900);
	box-shadow: 0 0 0 1px var(--green-300);
	cursor: pointer;
}

.pr-calc__scale {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: var(--grey-600);
}

.pr-calc__collab {
	border: 1.5px solid var(--green-300);
	border-radius: var(--radius);
	padding: 24px;
	background: rgba(11, 218, 81, 0.06);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.pr-calc__collab-head {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pr-calc__collab-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green-950);
	background: var(--green-300);
	border-radius: 100px;
	padding: 3px 10px;
	width: fit-content;
	margin-bottom: 6px;
}

.pr-calc__collab-head h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 0px;
	color: rgb(255, 255, 255);
}

.pr-calc__collab-head p {
	font-size: 13px;
	color: var(--grey-400);
	margin: 0px;
	line-height: 1.5;
}

.pr-calc__hint {
	font-size: 12px;
	color: var(--grey-500);
	margin: 4px 0px 0px;
}

.pr-calc__summary {
	background: rgb(255, 255, 255);
	color: var(--grey-900);
	padding: 40px;
	display: flex;
	flex-direction: column;
}

.pr-calc__summary-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--grey-400);
	margin: 0px 0px 20px;
}

.pr-calc__line {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	font-size: 14.5px;
	color: var(--grey-700);
	padding: 10px 0px;
}

.pr-calc__line span:last-child {
	font-weight: 700;
	color: var(--grey-900);
}

.pr-calc__line--sub {
	padding-top: 0px;
	font-size: 13px;
	color: var(--grey-500);
}

.pr-calc__line--sub span:last-child {
	font-weight: 600;
	color: var(--grey-500);
}

.pr-calc__divider {
	height: 1px;
	background: var(--grey-200);
	margin: 8px 0px;
}

.pr-calc__line--total {
	font-size: 17px;
	font-weight: 700;
}

.pr-calc__line--total span:last-child {
	font-size: 26px;
	color: var(--green-300);
}

.pr-calc__cta {
	margin-top: 20px;
	text-align: center;
	width: 100%;
}

.pr-calc__cta .dl-btn {
	display: block;
	text-align: center;
}

.pr-calc__note {
	font-size: 12px;
	color: var(--grey-400);
	line-height: 1.5;
	margin: 16px 0px 0px;
}

.pr-scale {
	padding: 90px 24px;
}

.pr-scale__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	margin-top: 40px;
}

.pr-scale__card {
	border: 1.5px solid var(--grey-200);
	border-radius: var(--radius);
	padding: 20px 16px;
	text-align: center;
}

.pr-scale__card-units {
	font-size: 12px;
	color: var(--grey-500);
	margin: 0px 0px 8px;
	font-weight: 600;
}

.pr-scale__card-price {
	font-size: 22px;
	font-weight: 800;
	color: var(--grey-900);
	margin: 0px;
}

.pr-scale__note {
	font-size: 13px;
	color: var(--grey-500);
	margin-top: 20px;
	line-height: 1.6;
	max-width: 720px;
}

.pr-faq .faq__item summary {
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.pr-faq .faq__item summary::-webkit-details-marker {
	display: none;
}

.pr-faq .faq__item p {
	margin: 12px 0px 0px;
}

.legal-hero {
	padding: 96px 24px 48px;
	text-align: center;
	border-bottom: 1px solid var(--grey-200);
}

.legal-hero__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green-400);
	margin-bottom: 16px;
}

.legal-hero h1 {
	font-size: clamp(30px, 4.5vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0px 0px 12px;
}

.legal-hero p {
	font-size: 14px;
	color: var(--grey-500);
	margin: 0px;
}

.legal-body {
	padding: 64px 24px 100px;
}

.navbar__popover.navbar__popover--narrow {
	inset-inline: auto;
	inset-block: auto;
	position-anchor: --anchor-navbar__item;
	position-area: span-right bottom;
}

.btn.btn--secondary.is-disabled {
	visibility: visible;
	pointer-events: none;
	cursor: default;
	opacity: 0.47;
}

.aff-welcome__media-2 {
	aspect-ratio: 1 / 1;
	width: 30vw;
	height: 30vw;
	margin-block: 64px 52px;
}

.video-example.is-agents_page {
	height: 100%;
}

.container.is-flex_center {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.manifesto-page {
	background: var(--color-bg, #ffffff);
	color: var(--color-text, #111827);
	font-family: var(--font-primary, "DM Sans", system-ui, sans-serif);
	padding-right: 24px;
	padding-bottom: 128px;
	padding-left: 24px;
	padding-block-start: 0px;
	margin-block-start: 74px;
}

.manifesto-shell {
	max-width: 760px;
	margin: 0px auto;
}

.manifesto-progress {
	position: fixed;
	top: 68px;
	left: 0px;
	z-index: 99;
	width: 100%;
	height: 4px;
	background: var(--grey-200, #e0e0e0);
	pointer-events: none;
}

.manifesto-progress__bar {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--green-400, #09b945);
	transform: scaleX(0);
	transform-origin: left center;
}

.manifesto-intro {
	padding-bottom: clamp(48px, 7vw, 80px);
	border-bottom: 1px solid var(--grey-200, #e0e0e0);
}

.manifesto-eyebrow, .manifesto-toc__label {
	margin: 0px 0px 20px;
	color: var(--green-500, #00804d);
	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.manifesto-intro h1 {
	max-width: 740px;
	margin: 0px;
	font-size: clamp(2.75rem, 7vw, 5.25rem);
	font-weight: 750;
	letter-spacing: -0.055em;
	line-height: 0.99;
}

.manifesto-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
	color: var(--grey-500, #6f6f6f);
	font-size: 0.875rem;
	line-height: 1.5;
}

.manifesto-lede {
	max-width: 650px;
	margin: 44px 0px 0px;
	color: var(--grey-600, #3a3a3a);
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
	letter-spacing: -0.015em;
	line-height: 1.48;
}

.manifesto-toc {
	margin: clamp(44px, 7vw, 72px) 0px clamp(72px, 10vw, 112px);
	padding: 28px 32px 30px;
	border-left: 3px solid var(--green-300, #0bda51);
	background: var(--grey-100, #f0f0f0);
}

.manifesto-toc__label {
	margin-bottom: 16px;
	color: var(--grey-600, #3a3a3a);
}

.manifesto-toc ol {
	margin: 0px;
	padding-left: 1.4em;
}

.manifesto-toc li {
	margin: 8px 0px;
	padding-left: 4px;
	color: var(--grey-500, #6f6f6f);
}

.manifesto-toc ol ol {
	margin-top: 6px;
	padding-left: 1.5em;
}

.manifesto-toc a {
	color: var(--grey-700, #2b2b2b);
	text-decoration: none 1px;
	text-underline-offset: 3px;
}

.manifesto-toc a:hover, .manifesto-toc a:focus-visible {
	color: var(--green-500, #00804d);
	text-decoration: underline;
}

.manifesto-article {
	font-size: clamp(1.08rem, 1.5vw, 1.2rem);
	line-height: 1.82;
	margin-block-end: 0px;
}

.manifesto-article > p:first-child {
	margin-top: 0px;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	letter-spacing: -0.012em;
	line-height: 1.58;
}

.manifesto-article p {
	margin: 0px 0px 1.35em;
}

.manifesto-article section {
	scroll-margin-top: 104px;
}

.manifesto-article h2 {
	margin-right: 0px;
	margin-bottom: 24px;
	margin-left: 0px;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 750;
	letter-spacing: -0.045em;
	line-height: 1.08;
	margin-block-start: 2vw;
}

.manifesto-article h3 {
	font-size: clamp(1.45rem, 2.7vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin-block: 0px 18px;
	margin-inline: 0px;
}

.manifesto-article strong {
	color: var(--grey-900, #1a1a1a);
	font-weight: 750;
}

.manifesto-arguments {
	margin-top: 30px;
	padding: 4px 0px 4px 24px;
	border-left: 1px solid var(--grey-300, #c4c4c4);
}

.manifesto-arguments p {
	margin-bottom: 1.35em;
}

.manifesto-closing {
	padding-top: 32px;
	border-top: 1px solid var(--grey-300, #c4c4c4);
	color: var(--neutral-darkest);
	font-size: clamp(1.5rem, 3vw, 2.15rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.35;
	margin-top: 72px !important;
}

.manifesto-article a:focus-visible, .manifesto-toc a:focus-visible {
	outline: 3px solid var(--green-300, #0bda51);
	outline-offset: 4px;
}

.final-cta--green {
	background: var(--grey-950);
}

.final-cta--green p {
	color: rgb(81, 81, 81);
}

.final-cta--green .btn--secondary {
	color: var(--grey-300);
	border: 1px solid var(--grey-700);
	background: transparent;
}

.final-cta.final-cta--green {
	background-color: var(--green-300);
}

.btn.btn--primary.btn--black {
	background-color: rgb(0, 0, 0);
}

.is-1x1 {
	aspect-ratio: 1 / 1;
}

.hero__video {
	aspect-ratio: 1 / 1;
	margin-block: 64px -6%;
}

.aff-hero.has-video {
	padding-block-end: 0px;
}

.p-1 {
	color: var(--green-700);
}

.dl-btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background 0.15s, color 0.15s;
	background: var(--green-300);
	color: var(--green-700);
}

.dl-btn:hover {
	background: var(--green-400);
}

.page-blank {
	min-height: 100vh;
	display: grid;
	place-items: center;
	text-align: center;
	color: rgb(17, 24, 39);
	padding: 24px;
}

.page-blank-title {
	font-size: 44px;
	margin: 0px 0px 12px;
	letter-spacing: -0.02em;
}

.page-blank-message {
	font-size: 18px;
	color: rgb(107, 114, 128);
	margin: 0px;
}

.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px;
	border: 1px solid var(--scheme-border);
	border-radius: var(--corner-radius);
	overflow: hidden;
	font-size: var(--text-regular-size);
	line-height: var(--text-regular-leading);
}

.table-head {
	background-color: var(--neutral-darkest);
	color: var(--scheme-btn-text);
}

.table-body {
	background-color: var(--scheme-background);
	color: var(--scheme-text);
}

.table-foot {
	background-color: var(--neutral-darkest);
	color: var(--scheme-btn-text);
}

.table-heading {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--scheme-border);
	border-right: 1px solid var(--scheme-border);
	text-align: left;
	font-size: var(--text-regular-size);
	line-height: var(--text-regular-leading);
	vertical-align: top;
	font-weight: 600;
}

.table-heading:last-child {
	border-right: none;
}

.table-cell {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid rgb(224, 224, 224);
	border-right: 1px solid rgb(224, 224, 224);
	text-align: left;
	font-size: var(--text-regular-size);
	line-height: var(--text-regular-leading);
	vertical-align: top;
}

.table-foot .table-cell {
	border-bottom: 1px solid var(--scheme-border);
	border-right: 1px solid var(--scheme-border);
}

.table-cell:last-child {
	border-right: none;
}

.table-row:last-child .table-cell {
	border-bottom: none;
}

.no-limit-page {
	background: var(--color-bg, #ffffff);
	color: var(--color-text, #111827);
	font-family: var(--font-primary, "DM Sans", system-ui, sans-serif);
}

.nl-hero {
	padding: 104px 24px 96px;
	background: var(--color-bg, #ffffff);
	color: var(--color-text, #111827);
	border-bottom: 1px solid var(--grey-200, #e0e0e0);
}

.nl-hero .container, .nl-section .container {
	max-width: 1120px;
	margin: 0px auto;
}

.nl-hero h1, .nl-section h2 {
	margin: 16px 0px 24px;
	font-weight: 750;
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.nl-hero h1 {
	max-width: 820px;
	font-size: clamp(2.75rem, 7vw, 5.25rem);
	letter-spacing: -0.055em;
	line-height: 0.99;
}

.nl-hero .section-label, .nl-section .section-label {
	margin: 0px 0px 20px;
	color: var(--green-500, #00804d);
	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.nl-hero__intro {
	max-width: 720px;
	color: var(--grey-600, #3a3a3a);
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
	letter-spacing: -0.015em;
	line-height: 1.48;
}

.nl-hero__lead {
	margin-top: 36px;
	color: var(--green-600, #083a2e);
	font-size: 1.35rem;
	font-weight: 700;
}

.nl-section {
	padding: 112px 20px;
}

.nl-two-column {
	display: grid;
	grid-template-columns: minmax(0px, 1fr) minmax(360px, 0.9fr);
	align-items: center;
	gap: 80px;
}

.nl-section h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

.nl-copy {
	max-width: 650px;
}

.nl-copy p {
	max-width: 62ch;
	line-height: 1.7;
}

.nl-list {
	display: grid;
	gap: 16px;
	padding: 0px;
	margin: 32px 0px 0px;
	list-style: none;
}

.nl-list li {
	padding: 16px 18px;
	border-left: 3px solid var(--green-300);
	background: var(--grey-100);
	line-height: 1.55;
}

.nl-illustration {
	border-radius: 18px;
	background: var(--grey-100);
	box-shadow: rgba(0, 0, 0, 0.12) 0px 24px 60px;
	overflow: hidden;
}

.nl-window-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 14px 18px;
	background: var(--grey-200, #e0e0e0);
	color: var(--grey-700, #2b2b2b);
	font-size: 0.8rem;
}

.nl-window-bar span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--green-300);
}

.nl-window-bar b {
	margin-left: 10px;
	font-weight: 500;
}

.nl-window-body {
	display: grid;
	grid-template-columns: 42px 1fr;
	min-height: 310px;
	padding: 22px;
	gap: 18px;
}

.nl-tool-rail {
	display: grid;
	align-content: start;
	gap: 16px;
	padding-top: 4px;
}

.nl-tool-rail i {
	display: block;
	width: 18px;
	height: 18px;
	border: 2px solid var(--grey-400);
	border-radius: 4px;
}

.nl-table-stage {
	padding: 20px;
	background: rgb(255, 255, 255);
	border: 1px solid var(--grey-300);
	border-radius: 10px;
}

.nl-stage-label {
	margin-bottom: 18px;
	color: var(--grey-500);
	font-size: 0.8rem;
}

.nl-table-stage table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
}

.nl-table-stage th, .nl-table-stage td {
	padding: 12px 8px;
	border: 1px solid var(--grey-200);
	text-align: left;
}

.nl-table-stage th {
	color: var(--grey-700);
}

.nl-selection {
	margin-top: 18px;
	padding: 9px 12px;
	color: var(--green-700);
	background: var(--green-100);
	border-radius: 6px;
	font-size: 0.75rem;
}

.nl-selection span {
	float: right;
	letter-spacing: 3px;
}

.nl-edge {
	background: var(--grey-100);
}

.nl-elements-illustration {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	gap: 14px;
	min-height: 340px;
	padding: 46px;
	background: var(--grey-100, #f0f0f0);
	border: 1px solid var(--grey-200, #e0e0e0);
}

.nl-element-chip {
	padding: 12px 16px;
	border-radius: 8px;
	font-family: monospace;
	font-size: 1rem;
}

.nl-element-chip--green {
	color: var(--green-700, #083a2e);
	background: var(--green-300, #0bda51);
}

.nl-element-chip--dark {
	color: rgb(255, 255, 255);
	background: var(--grey-700);
}

.nl-element-chip--outline {
	color: var(--green-700, #083a2e);
	border: 1px solid var(--green-300, #0bda51);
	background: transparent;
}

.nl-code-lines {
	width: 100%;
	margin-top: 20px;
}

.nl-code-lines span {
	display: block;
	width: 72%;
	height: 8px;
	margin: 12px 0px;
	border-radius: 4px;
	background: var(--green-300, #0bda51);
}

.nl-code-lines span:nth-child(2) {
	width: 92%;
}

.nl-code-lines span:nth-child(3) {
	width: 54%;
}

.nl-code-lines span:nth-child(4) {
	width: 80%;
}

.nl-agent {
	background: rgb(255, 255, 255);
}

.nl-file-illustration {
	padding: 28px;
	background: var(--grey-100, #f0f0f0);
	color: var(--color-text, #111827);
	border: 1px solid var(--grey-200, #e0e0e0);
}

.nl-folder, .nl-file {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border-bottom: 1px solid var(--grey-200, #e0e0e0);
}

.nl-folder {
	justify-content: space-between;
	color: var(--green-500, #00804d);
	font-size: 0.8rem;
	letter-spacing: 0.12em;
}

.nl-file-icon {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: var(--green-500, #00804d);
	background: rgb(255, 255, 255);
	border: 1px solid var(--grey-200, #e0e0e0);
	border-radius: 6px;
	font-family: monospace;
}

.nl-agent-note {
	margin-top: 28px;
	padding: 14px;
	color: var(--grey-600, #3a3a3a);
	border: 1px dashed var(--grey-300, #c4c4c4);
	font-size: 0.85rem;
}

.nl-demo {
	padding-top: 40px;
	padding-bottom: 40px;
}

.nl-demo-card {
	max-width: 820px;
	margin: 0px auto;
	padding: 28px;
	background: var(--green-100);
	border-radius: 14px;
}

.nl-demo-card__top {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: var(--green-700);
	font-size: 0.8rem;
	font-weight: 700;
}

.nl-demo-card > p {
	font-size: clamp(1.3rem, 3vw, 2rem);
	font-weight: 700;
}

.nl-demo-status {
	color: var(--green-500);
}

.nl-demo-card__result {
	display: flex;
	gap: 12px;
	line-height: 1.5;
}

.nl-demo-check {
	color: var(--green-500);
	font-weight: 700;
}

.nl-demo__caption {
	max-width: 700px;
	margin: 24px auto 0px;
	text-align: center;
	line-height: 1.6;
}

.nl-free {
	text-align: center;
	background: var(--color-bg, #ffffff);
	color: var(--color-text, #111827);
	border-top: 1px solid var(--grey-200, #e0e0e0);
}

.nl-free .container {
	max-width: 760px;
}

.nl-free p:not(.section-label) {
	line-height: 1.7;
}

.nl-free .hero__actions {
	justify-content: center;
	margin-top: 32px;
}

.btn.btn--primary {
	color: var(--green-700);
}

.h2-3 {
	color: rgb(1, 31, 20);
}

.manifesto-eyebrow {
	color: var(--green-400);
}

.iframe-wrapper {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 12px;
	margin-block-start: 32px;
}

.iframe-wrapper.aff-switch__stage {
	width: 100%;
	height: 100%;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.iframe-wrapper.aff-switch__stage swiper-slide {
	height: 100%;
}

.Iframe-content {
	width: 100%;
	height: auto;
}

.Iframe-content.aff-switch__panel {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	flex-flow: column;
}

.video-iframe {
	width: 100%;
	height: 100%;
	display: block;
	border-style: none;
	border-width: 1px;
}

.video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: contain;
	background-color: var(--neutral-darkest);
}

.viceo-wrapper {
	overflow: hidden;
	border-style: solid;
	border-width: 1px;
	border-color: rgb(17, 24, 39);
	border-radius: 12px;
}

.video.format-1x1 {
	aspect-ratio: 1 / 1;
}

.viceo-wrapper.max-w-small {
	max-width: 24rem;
	margin-inline: auto;
}

.section-1 {
	padding-block-end: 0px;
}

.section-2 {
	padding-block-end: 0px;
}

.link-span {
	font-variation-settings: "wght" 509;
	font-weight: 500;
}

@keyframes home-scroll { 
  0% { transform: translateX(0px); }
  100% { transform: translateX(-50%); }
}

@starting-style {
  .navbar__popover:popover-open { opacity: 0; translate: 0px -6px; }
}

@keyframes aff-marquee-scroll { 
  0% { transform: translateX(0px); }
  100% { transform: translateX(-50%); }
}

.navbar__popover:popover-open .navbar__popover-col.is-compare {
	display: none;
}

@media (max-width: 991px) {
  .navbar__menu { display: none; }
  .navbar__toggle { display: inline-flex; }
  .home-split__inner { grid-template-columns: 1fr; }
  .site-footer__nav { display: flex; flex-flow: column; }
  .aff-welcome__inner, .aff-agent__inner { grid-template-columns: 1fr; }
  .aff-testimonial__row { grid-template-columns: 1fr; }
  .aff-testimonial__side { display: none; }
  .aff-zero__grid { grid-template-columns: 1fr; }
  .aff-manifesto__corner { display: none; }
  .pr-plan__card { grid-template-columns: 1fr; }
  .pr-plan__header { border-right: none; border-bottom: 1px solid var(--grey-800); }
  .pr-why__grid { grid-template-columns: 1fr; }
  .pr-calc__card { grid-template-columns: 1fr; }
  .pr-scale__grid { grid-template-columns: repeat(3, 1fr); }
  .navbar__actions { display: none; }
  .is-1x1 { aspect-ratio: 1 / 1; }
  .container--wide.aff-welcome__inner { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .hero__video { margin-block-end: -7%; }
  .why__grid { grid-template-rows: none; }
  .dl-btn { text-align: center; }
  .page-blank { align-content: start; padding-block-start: 111px; }
  .table { margin-block-start: 39px; width: 100%; }
}

@media (max-width: 767px) {
  .why-grid, .helps-layout { grid-template-columns: 1fr; }
  .hero-2 { padding: 48px 0px 56px; }
  .container--wide.site-footer__inner { display: flex; flex-flow: row; }
  .home-pros__grid { grid-template-columns: 1fr 1fr; }
  .home-who__grid { grid-template-columns: 1fr; }
  .aff-standard__head { flex-direction: column; align-items: flex-start; }
  .manifesto-page { padding: 72px 20px 88px; }
  .manifesto-progress { top: 68px; }
  .manifesto-toc { padding: 24px 20px 25px; }
  .manifesto-arguments { padding-left: 18px; }
  .is-1x1 { aspect-ratio: 1 / 1; }
  .hero__video { margin-block-end: -9%; }
  .nl-section { padding: 76px 20px; }
  .nl-two-column { grid-template-columns: 1fr; gap: 44px; }
  .nl-elements-illustration { min-height: 260px; padding: 28px; }
  .nl-window-body { padding: 12px; gap: 8px; }
  .nl-table-stage { padding: 12px 8px; }
  .nl-table-stage th, .nl-table-stage td { padding: 8px 4px; font-size: 0.72rem; }
}

@media (max-width: 479px) {
  .post-hero { padding: 72px 20px 60px; }
  .post-body { padding: 56px 20px 72px; }
  .post-next { padding: 56px 20px 72px; }
  .post-next__grid { grid-template-columns: 1fr; }
  .navbar__inner { padding-top: 12px; padding-bottom: 12px; }
  .navbar__login { display: none; }
  .cmp-hero { padding: 64px 24px 48px; }
  .cmp-grid, .cmp-pricing__grid, .cmp-opinions__grid, .cmp-verdicts__grid { grid-template-columns: 1fr; }
  .home-hero { padding: 88px 20px 0px; }
  .home-hero__actions { margin-bottom: 48px; }
  .home-carousel__card { width: 180px; height: 220px; }
  .blog-hero { padding: 72px 20px 56px; }
  .blog-list { padding: 56px 20px 80px; }
  .blog-grid { grid-template-columns: 1fr; }
  .container--wide.site-footer__inner { flex-flow: column; }
  .home-pros__grid { grid-template-columns: 1fr; }
  .aff-hero { padding: 96px 20px 0px; }
  .aff-hero__stage { padding-bottom: 64px; }
  .aff-hero-swiper .swiper-slide { width: 190px; }
  .aff-hero-swiper .aff-poster { min-height: 140px; }
  .aff-switch { padding: 72px 0px 0px; }
  .aff-standard, .aff-welcome, .aff-testimonial, .aff-zero, .aff-agent, .aff-blog { padding: 64px 0px; }
  .aff-welcome__inner { grid-template-columns: 1fr; gap: 32px; }
  .aff-manifesto { padding: 96px 20px; }
  .aff-feature-card { min-height: 320px; }
  .pr-plan__header, .pr-plan__list { padding: 32px 24px; }
  .pr-calc__panel, .pr-calc__summary { padding: 28px 24px; }
  .pr-scale__grid { grid-template-columns: repeat(2, 1fr); }
  .pr-calc__line--total span:last-child { font-size: 22px; }
  .is-1x1 { aspect-ratio: 1 / 1; }
  .aff-welcome__media { box-sizing: content-box; }
  .aff-poster.aff-poster--tall { display: flex; justify-content: space-between; }
  .container--wide.aff-welcome__inner { grid-template-columns: none; }
  .video-example.is-1x1 { height: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
}

@media (prefers-reduced-motion: reduce) {
  .manifesto-toc a { transition: none; }
}