.kle-page {
	--kle-page-bg: #f3f2ee;
	--kle-hero-bg: #0b1614;
	--kle-dark-bg: #101d1a;
	--kle-surface: #ffffff;
	--kle-text: #101a18;
	--kle-muted: #68736f;
	--kle-light: #f6f7f3;
	--kle-accent: #a7d129;
	--kle-accent-dark: #789d0d;
	--kle-line: #d9ded9;
	--kle-card-radius: 24px;
	--kle-button-radius: 14px;
	--kle-shadow: 0 28px 80px rgba(6, 17, 14, 0.14);
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--kle-page-bg);
	color: var(--kle-text);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.6;
	isolation: isolate;
}

.kle-page.kle-full-bleed {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.kle-page,
.kle-page * {
	box-sizing: border-box;
}

.kle-page button,
.kle-page a {
	font: inherit;
}

.kle-page button {
	-webkit-tap-highlight-color: transparent;
}

.kle-page p,
.kle-page h1,
.kle-page h2,
.kle-page h3 {
	margin-top: 0;
}

.kle-page svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kle-section-inner {
	--kle-section-space: 110px;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding-top: var(--kle-section-space);
	padding-bottom: var(--kle-section-space);
	padding-left: 36px;
	padding-right: 36px;
}

.kle-hero {
	position: relative;
	min-height: 820px;
	background:
		radial-gradient(circle at 15% 15%, rgba(167, 209, 41, 0.11), transparent 28%),
		linear-gradient(135deg, #0b1614 0%, var(--kle-hero-bg) 60%, #12251f 100%);
	color: var(--kle-light);
}

.kle-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 94%);
}

.kle-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 86px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
	pointer-events: none;
}

.kle-hero-orbit {
	position: absolute;
	border: 1px solid rgba(167, 209, 41, 0.15);
	border-radius: 50%;
	pointer-events: none;
}

.kle-hero-orbit-one {
	width: 520px;
	height: 520px;
	right: -185px;
	top: -190px;
}

.kle-hero-orbit-two {
	width: 260px;
	height: 260px;
	left: -110px;
	bottom: 80px;
}

.kle-hero-inner {
	padding-top: clamp(74px, 7vw, 118px);
	padding-bottom: clamp(78px, 7vw, 118px);
}

.kle-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
	gap: clamp(56px, 7vw, 108px);
	align-items: center;
}

.kle-hero-copy {
	position: relative;
	z-index: 3;
}

.kle-brand-lockup {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 48px;
	margin-bottom: 72px;
}

.kle-brand-image {
	display: inline-flex;
	align-items: center;
	max-width: 160px;
	max-height: 46px;
}

.kle-brand-image img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 46px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.kle-brand-fallback {
	display: inline-flex;
	flex-direction: column;
	gap: 0;
	line-height: 1;
	letter-spacing: 0.02em;
}

.kle-brand-fallback strong {
	font-size: 20px;
	font-weight: 850;
	letter-spacing: 0.07em;
}

.kle-brand-fallback small {
	margin-top: 6px;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: rgba(246, 247, 243, 0.58);
}

.kle-brand-connector {
	font-size: 20px;
	font-weight: 300;
	color: var(--kle-accent);
}

.kle-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--kle-accent-dark);
}

.kle-eyebrow-light {
	color: var(--kle-accent);
}

.kle-eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 5px rgba(167, 209, 41, 0.11);
}

.kle-hero-title {
	max-width: 820px;
	margin-bottom: 30px;
	font-size: clamp(52px, 6.1vw, 94px);
	font-weight: 730;
	line-height: 0.96;
	letter-spacing: -0.055em;
	color: var(--kle-light);
}

.kle-hero-title span,
.kle-hero-title strong {
	display: block;
}

.kle-hero-title strong {
	font-weight: 730;
	color: var(--kle-accent);
}

.kle-hero-text {
	max-width: 690px;
	font-size: clamp(17px, 1.45vw, 21px);
	line-height: 1.75;
	color: rgba(246, 247, 243, 0.72);
}

.kle-hero-text p:last-child {
	margin-bottom: 0;
}

.kle-proof-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	margin-top: 36px;
}

.kle-proof-item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	font-weight: 680;
	letter-spacing: 0.02em;
	color: rgba(246, 247, 243, 0.86);
}

.kle-proof-item svg {
	width: 17px;
	height: 17px;
	padding: 3px;
	border-radius: 50%;
	background: var(--kle-accent);
	color: var(--kle-hero-bg);
	stroke-width: 2.5;
}

.kle-hero-panel-wrap {
	position: relative;
	min-height: 620px;
}

.kle-system-visual {
	position: absolute;
	top: 0;
	right: -26px;
	width: min(100%, 490px);
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.025);
	box-shadow: inset 0 0 80px rgba(167, 209, 41, 0.035);
}

.kle-system-grid {
	position: absolute;
	inset: 12%;
	border-radius: 50%;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: radial-gradient(circle, #000 30%, transparent 74%);
}

.kle-air-ring {
	position: absolute;
	left: 50%;
	top: 50%;
	border: 1px solid rgba(167, 209, 41, 0.36);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.kle-air-ring-one {
	width: 58%;
	height: 58%;
}

.kle-air-ring-two {
	width: 80%;
	height: 80%;
	border-style: dashed;
	animation: kle-rotate 28s linear infinite;
}

.kle-air-core {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 38%;
	height: 38%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(167, 209, 41, 0.22), rgba(167, 209, 41, 0.02) 70%);
	color: var(--kle-accent);
}

.kle-air-core svg {
	width: 100%;
	height: 100%;
	stroke-width: 1.2;
	animation: kle-spin 18s linear infinite reverse;
}

.kle-air-core svg path {
	fill: rgba(167, 209, 41, 0.13);
}

.kle-air-core svg circle {
	fill: var(--kle-accent);
}

.kle-system-label {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 8px;
	background: rgba(11, 22, 20, 0.72);
	backdrop-filter: blur(8px);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: rgba(246, 247, 243, 0.7);
}

.kle-system-label span {
	color: var(--kle-accent);
}

.kle-system-label-a {
	left: 2%;
	top: 24%;
}

.kle-system-label-b {
	right: 2%;
	top: 40%;
}

.kle-system-label-c {
	left: 12%;
	bottom: 17%;
}

.kle-flow-line {
	position: absolute;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--kle-accent), transparent);
	transform-origin: left center;
	opacity: 0.5;
}

.kle-flow-line-one {
	left: 10%;
	top: 51%;
	width: 33%;
	transform: rotate(-18deg);
}

.kle-flow-line-two {
	left: 57%;
	top: 43%;
	width: 29%;
	transform: rotate(24deg);
}

.kle-offer-card {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 4;
	width: min(100%, 440px);
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--kle-card-radius);
	background: rgba(248, 250, 244, 0.96);
	box-shadow: 0 28px 100px rgba(0, 0, 0, 0.32);
	color: var(--kle-text);
	backdrop-filter: blur(16px);
}

.kle-offer-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.kle-offer-head span {
	padding-top: 4px;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--kle-muted);
}

.kle-offer-head strong {
	font-size: 28px;
	font-weight: 850;
	line-height: 1;
	letter-spacing: -0.045em;
	color: var(--kle-accent-dark);
}

.kle-offer-card h2 {
	max-width: 330px;
	margin-bottom: 13px;
	font-size: 28px;
	font-weight: 780;
	line-height: 1.14;
	letter-spacing: -0.035em;
}

.kle-offer-card > p {
	margin-bottom: 22px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--kle-muted);
}

.kle-code-button {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	width: 100%;
	min-height: 58px;
	margin-bottom: 13px;
	padding: 12px 15px;
	border: 1px dashed rgba(16, 26, 24, 0.28);
	border-radius: 12px;
	background: rgba(16, 26, 24, 0.035);
	color: var(--kle-text);
	cursor: pointer;
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.kle-code-button:hover {
	border-color: var(--kle-accent-dark);
	background: rgba(167, 209, 41, 0.08);
	transform: translateY(-1px);
}

.kle-code-button span {
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.18em;
	color: var(--kle-muted);
}

.kle-code-button strong {
	font-size: 19px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-align: left;
}

.kle-code-button svg {
	width: 19px;
	height: 19px;
	color: var(--kle-accent-dark);
}

.kle-action-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	min-height: 62px;
	padding: 15px 17px 15px 20px;
	border: 0;
	border-radius: var(--kle-button-radius);
	background: var(--kle-accent);
	color: #101a18;
	font-weight: 800;
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(120, 157, 13, 0.2);
	transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.kle-action-button:hover {
	background: #b6dc3d;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(120, 157, 13, 0.27);
}

.kle-action-button:focus-visible,
.kle-code-button:focus-visible,
.kle-track-link:focus-visible {
	outline: 3px solid rgba(167, 209, 41, 0.42);
	outline-offset: 3px;
}

.kle-action-button.is-processing {
	pointer-events: none;
	opacity: 0.86;
}

.kle-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 35px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: rgba(16, 26, 24, 0.1);
}

.kle-button-icon svg {
	width: 18px;
	height: 18px;
}

.kle-action-status {
	min-height: 0;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--kle-accent-dark);
}

.kle-action-status:empty {
	display: none;
}

.kle-offer-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 13px;
	font-size: 10px;
	line-height: 1.5;
	color: var(--kle-muted);
}

.kle-offer-note svg {
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	margin-top: 1px;
}

.kle-partnership-section {
	position: relative;
	background: var(--kle-page-bg);
}

.kle-partnership-section::before {
	content: "";
	position: absolute;
	right: -120px;
	top: 100px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(167, 209, 41, 0.15), transparent 68%);
	pointer-events: none;
}

.kle-section-intro {
	position: relative;
	z-index: 2;
	margin-bottom: 58px;
}

.kle-section-intro-split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
	gap: clamp(44px, 8vw, 120px);
	align-items: end;
}

.kle-section-intro-split > p {
	margin-bottom: 4px;
	font-size: 18px;
	line-height: 1.75;
	color: var(--kle-muted);
}

.kle-section-title {
	max-width: 820px;
	margin-bottom: 0;
	font-size: clamp(39px, 4.3vw, 66px);
	font-weight: 730;
	line-height: 1.02;
	letter-spacing: -0.045em;
	color: var(--kle-text);
}

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

.kle-benefit-card {
	position: relative;
	min-height: 330px;
	padding: 31px;
	border: 1px solid var(--kle-line);
	border-radius: var(--kle-card-radius);
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 18px 48px rgba(20, 36, 31, 0.045);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.kle-benefit-card:hover {
	transform: translateY(-6px);
	border-color: rgba(120, 157, 13, 0.38);
	box-shadow: var(--kle-shadow);
}

.kle-benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 58px;
	border-radius: 16px;
	background: rgba(167, 209, 41, 0.13);
	color: var(--kle-accent-dark);
}

.kle-benefit-icon svg {
	width: 29px;
	height: 29px;
}

.kle-card-index {
	position: absolute;
	right: 28px;
	top: 28px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: #a6afaa;
}

.kle-benefit-card h3,
.kle-track-card h3,
.kle-step h3 {
	margin-bottom: 12px;
	font-size: 23px;
	font-weight: 760;
	line-height: 1.2;
	letter-spacing: -0.025em;
	color: var(--kle-text);
}

.kle-card-text,
.kle-step p {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1.72;
	color: var(--kle-muted);
}

.kle-tracks-section {
	position: relative;
	background:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		var(--kle-dark-bg);
	background-size: 64px 64px, 64px 64px, auto;
	color: var(--kle-light);
}

.kle-tracks-section::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 230px;
	background: linear-gradient(to top, rgba(167, 209, 41, 0.035), transparent);
	pointer-events: none;
}

.kle-section-intro-dark {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
	gap: 40px 90px;
	align-items: end;
}

.kle-section-intro-dark .kle-eyebrow {
	grid-column: 1 / -1;
	margin-bottom: -18px;
}

.kle-section-intro-dark .kle-section-title {
	color: var(--kle-light);
}

.kle-section-intro-dark > p {
	margin-bottom: 4px;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(246, 247, 243, 0.62);
}

.kle-tracks-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.kle-track-card {
	position: relative;
	min-height: 340px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--kle-card-radius);
	background: rgba(255, 255, 255, 0.035);
	transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.kle-track-card::before {
	content: "";
	position: absolute;
	left: 31px;
	right: 31px;
	bottom: 78px;
	height: 1px;
	background: rgba(255, 255, 255, 0.09);
}

.kle-track-card:hover {
	transform: translateY(-5px);
	border-color: rgba(167, 209, 41, 0.4);
	background: rgba(255, 255, 255, 0.06);
}

.kle-track-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 68px;
}

.kle-track-topline span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: var(--kle-accent);
}

.kle-track-topline small {
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 99px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(246, 247, 243, 0.68);
}

.kle-track-card h3 {
	max-width: 470px;
	font-size: 30px;
	color: var(--kle-light);
}

.kle-track-card .kle-card-text {
	max-width: 500px;
	padding-bottom: 80px;
	color: rgba(246, 247, 243, 0.61);
}

.kle-track-link {
	position: absolute;
	left: 32px;
	right: 32px;
	bottom: 27px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	font-size: 13px;
	font-weight: 760;
	text-decoration: none;
	color: var(--kle-accent);
}

.kle-track-link svg {
	width: 19px;
	height: 19px;
	transition: transform 0.25s ease;
}

.kle-track-link:hover svg {
	transform: translateX(5px);
}

.kle-journey-section {
	background: var(--kle-surface);
}

.kle-section-intro-centered {
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.kle-section-intro-centered .kle-section-title {
	margin-left: auto;
	margin-right: auto;
}

.kle-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--kle-line);
	border-bottom: 1px solid var(--kle-line);
}

.kle-step {
	position: relative;
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 18px;
	min-height: 230px;
	padding: 42px 30px;
}

.kle-step:not(:last-child) {
	border-right: 1px solid var(--kle-line);
}

.kle-step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--kle-text);
	color: var(--kle-light);
	font-size: 14px;
	font-weight: 800;
}

.kle-step h3 {
	margin-top: 5px;
}

.kle-final-section {
	position: relative;
	background: var(--kle-page-bg);
}

.kle-final-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
	gap: clamp(50px, 9vw, 130px);
	align-items: center;
	overflow: hidden;
	padding: clamp(44px, 6vw, 78px);
	border-radius: calc(var(--kle-card-radius) + 8px);
	background: var(--kle-hero-bg);
	box-shadow: var(--kle-shadow);
	color: var(--kle-light);
}

.kle-final-copy,
.kle-final-action {
	position: relative;
	z-index: 2;
}

.kle-final-card .kle-section-title {
	margin-bottom: 22px;
	color: var(--kle-light);
}

.kle-final-copy > p {
	max-width: 620px;
	margin-bottom: 0;
	font-size: 18px;
	color: rgba(246, 247, 243, 0.68);
}

.kle-final-code {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 13px;
	padding: 15px 17px;
	border: 1px dashed rgba(255, 255, 255, 0.22);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.045);
}

.kle-final-code small {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(246, 247, 243, 0.55);
}

.kle-final-code strong {
	font-size: 19px;
	font-weight: 850;
	letter-spacing: 0.08em;
	color: var(--kle-accent);
}

.kle-final-card .kle-action-status {
	color: var(--kle-accent);
}

.kle-final-pattern {
	position: absolute;
	right: -100px;
	top: 50%;
	width: 390px;
	height: 390px;
	transform: translateY(-50%);
	border: 1px solid rgba(167, 209, 41, 0.13);
	border-radius: 50%;
	color: rgba(167, 209, 41, 0.08);
}

.kle-final-pattern::before,
.kle-final-pattern::after {
	content: "";
	position: absolute;
	inset: 12%;
	border: 1px dashed rgba(167, 209, 41, 0.1);
	border-radius: 50%;
}

.kle-final-pattern::after {
	inset: 27%;
	border-style: solid;
}

.kle-final-pattern svg {
	position: absolute;
	inset: 20%;
	width: 60%;
	height: 60%;
	stroke-width: 0.8;
}

.kle-final-pattern svg path {
	fill: rgba(167, 209, 41, 0.025);
}

@keyframes kle-rotate {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes kle-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.kle-page *,
	.kle-page *::before,
	.kle-page *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 1100px) {
	.kle-hero-grid {
		grid-template-columns: 1fr;
		gap: 66px;
	}

	.kle-hero-copy {
		max-width: 840px;
	}

	.kle-brand-lockup {
		margin-bottom: 55px;
	}

	.kle-hero-panel-wrap {
		width: min(100%, 760px);
		min-height: 570px;
		margin-left: auto;
		margin-right: auto;
	}

	.kle-system-visual {
		right: 0;
		left: auto;
		width: 510px;
	}

	.kle-offer-card {
		left: 0;
		right: auto;
		bottom: 0;
	}

	.kle-section-intro-split,
	.kle-section-intro-dark,
	.kle-final-card {
		grid-template-columns: 1fr;
	}

	.kle-section-intro-dark .kle-eyebrow {
		margin-bottom: 0;
	}

	.kle-section-intro-dark > p,
	.kle-section-intro-split > p {
		max-width: 760px;
	}

	.kle-final-action {
		max-width: 520px;
	}

	.kle-final-pattern {
		right: -130px;
		top: auto;
		bottom: -180px;
		transform: none;
	}
}

@media (max-width: 900px) {
	.kle-benefits-grid {
		grid-template-columns: 1fr;
	}

	.kle-benefit-card {
		min-height: 0;
	}

	.kle-benefit-icon {
		margin-bottom: 42px;
	}

	.kle-tracks-grid {
		grid-template-columns: 1fr;
	}

	.kle-steps {
		grid-template-columns: 1fr;
	}

	.kle-step {
		min-height: 0;
	}

	.kle-step:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid var(--kle-line);
	}
}

@media (max-width: 767px) {
	.kle-page {
		font-size: 15px;
	}

	.kle-section-inner {
		--kle-section-space: 64px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.kle-hero {
		min-height: auto;
	}

	.kle-hero-inner {
		padding-top: 52px;
		padding-bottom: 70px;
	}

	.kle-brand-lockup {
		flex-wrap: wrap;
		gap: 13px;
		margin-bottom: 44px;
	}

	.kle-brand-image {
		max-width: 125px;
		max-height: 37px;
	}

	.kle-brand-image img {
		max-height: 37px;
	}

	.kle-brand-fallback strong {
		font-size: 17px;
	}

	.kle-brand-fallback small {
		font-size: 7px;
	}

	.kle-eyebrow {
		font-size: 10px;
		letter-spacing: 0.14em;
	}

	.kle-hero-title {
		font-size: clamp(43px, 14vw, 64px);
	}

	.kle-hero-text {
		font-size: 16px;
	}

	.kle-proof-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.kle-hero-panel-wrap {
		min-height: auto;
	}

	.kle-system-visual {
		position: relative;
		width: 100%;
		max-width: 440px;
		margin-left: auto;
		margin-right: auto;
	}

	.kle-offer-card {
		position: relative;
		width: calc(100% - 16px);
		margin: -40px auto 0;
		padding: 24px;
	}

	.kle-offer-head strong {
		font-size: 23px;
	}

	.kle-offer-card h2 {
		font-size: 24px;
	}

	.kle-section-title {
		font-size: clamp(36px, 10vw, 50px);
	}

	.kle-section-intro {
		margin-bottom: 42px;
	}

	.kle-section-intro-split,
	.kle-section-intro-dark {
		gap: 26px;
	}

	.kle-section-intro-split > p,
	.kle-final-copy > p {
		font-size: 16px;
	}

	.kle-benefit-card,
	.kle-track-card {
		padding: 25px;
	}

	.kle-benefit-icon {
		margin-bottom: 35px;
	}

	.kle-track-card {
		min-height: 330px;
	}

	.kle-track-topline {
		margin-bottom: 50px;
	}

	.kle-track-card h3 {
		font-size: 26px;
	}

	.kle-track-link {
		left: 25px;
		right: 25px;
	}

	.kle-step {
		grid-template-columns: 44px 1fr;
		padding: 30px 10px;
	}

	.kle-step-number {
		width: 38px;
		height: 38px;
	}

	.kle-final-card {
		padding: 34px 25px;
		gap: 40px;
	}

	.kle-final-pattern {
		display: none;
	}
}

@media (max-width: 440px) {
	.kle-system-label {
		font-size: 7px;
		padding: 6px 8px;
	}

	.kle-offer-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.kle-code-button {
		grid-template-columns: auto 1fr auto;
		gap: 10px;
	}

	.kle-code-button strong {
		font-size: 16px;
	}

	.kle-action-button {
		font-size: 14px;
	}

	.kle-final-code {
		align-items: flex-start;
		flex-direction: column;
	}
}
