:root {
	--kez-bg: #0b0f12;
	--kez-bg-soft: #10161a;
	--kez-surface: #141b1f;
	--kez-surface-2: #192227;
	--kez-border: rgba(255, 255, 255, 0.1);
	--kez-border-strong: rgba(255, 255, 255, 0.17);
	--kez-text: #f7f9f8;
	--kez-muted: #aeb9b4;
	--kez-green: #4caf51;
	--kez-green-bright: #75df7a;
	--kez-green-dark: #183d20;
	--kez-blue: #5aa7ff;
	--kez-radius-sm: 12px;
	--kez-radius: 20px;
	--kez-radius-lg: 30px;
	--kez-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	--kez-shell: 1180px;
}

html {
	scroll-behavior: smooth;
	background: var(--kez-bg);
}

body.kez-flutter-landing {
	min-height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	/* RyanCV prints its configured gradient color inline after enqueued styles. */
	background: var(--kez-bg) !important;
	color: var(--kez-text);
	font-family: "Play", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

.kez-flutter-landing *,
.kez-flutter-landing *::before,
.kez-flutter-landing *::after {
	box-sizing: border-box;
}

.kez-flutter-landing img {
	display: block;
	max-width: 100%;
}

.kez-flutter-landing a {
	color: inherit;
	text-decoration: none;
}

.kez-flutter-landing button,
.kez-flutter-landing a {
	-webkit-tap-highlight-color: transparent;
}

.kez-flutter-landing :focus-visible {
	outline: 3px solid var(--kez-green-bright);
	outline-offset: 4px;
}

.kez-flutter-landing h1,
.kez-flutter-landing h2,
.kez-flutter-landing h3,
.kez-flutter-landing p {
	margin-top: 0;
}

.kez-flutter-landing h1,
.kez-flutter-landing h2,
.kez-flutter-landing h3 {
	color: var(--kez-text);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.035em;
}

.kez-shell {
	width: min(calc(100% - 40px), var(--kez-shell));
	margin-inline: auto;
}

.kez-narrow {
	max-width: 880px;
}

.kez-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99999;
	transform: translateY(-160%);
	padding: 10px 16px;
	border-radius: 8px;
	background: #fff;
	color: #111;
	font-weight: 700;
}

.kez-skip-link:focus {
	transform: translateY(0);
}

.kez-site-header {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid var(--kez-border);
	background: rgba(11, 15, 18, 0.92);
	backdrop-filter: blur(16px);
}

.kez-site-header__inner {
	display: flex;
	align-items: center;
	min-height: 78px;
	gap: 34px;
}

.kez-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	flex: none;
}

.kez-brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(117, 223, 122, 0.36);
	border-radius: 13px;
	background: linear-gradient(145deg, rgba(76, 175, 81, 0.22), rgba(76, 175, 81, 0.06));
	color: var(--kez-green-bright);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.kez-brand strong,
.kez-brand small {
	display: block;
}

.kez-brand strong {
	font-size: 14px;
	line-height: 1.3;
}

.kez-brand small {
	margin-top: 2px;
	color: var(--kez-muted);
	font-size: 11px;
	line-height: 1.3;
}

.kez-primary-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-left: auto;
}

.kez-primary-nav a {
	position: relative;
	padding: 26px 0;
	color: #c7d0cc;
	font-size: 13px;
	font-weight: 600;
}

.kez-primary-nav a:hover,
.kez-primary-nav a[aria-current="page"] {
	color: #fff;
}

.kez-primary-nav a[aria-current="page"]::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--kez-green-bright);
}

.kez-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 52px;
	padding: 13px 21px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.kez-button:hover {
	transform: translateY(-2px);
}

.kez-button--primary,
.kez-button--compact {
	background: var(--kez-green);
	color: #061009;
	box-shadow: 0 12px 30px rgba(76, 175, 81, 0.19);
}

.kez-button--primary:hover,
.kez-button--compact:hover {
	background: var(--kez-green-bright);
}

.kez-button--ghost {
	border-color: var(--kez-border-strong);
	background: rgba(255, 255, 255, 0.035);
	color: #fff;
}

.kez-button--ghost:hover {
	border-color: rgba(117, 223, 122, 0.55);
	background: rgba(117, 223, 122, 0.07);
}

.kez-button--text {
	min-height: auto;
	padding: 8px 0;
	color: #dce4e0;
}

.kez-button--text:hover {
	color: var(--kez-green-bright);
}

.kez-button--compact {
	min-height: 42px;
	padding: 9px 15px;
	font-size: 12px;
}

.kez-external-icon {
	width: 16px;
	height: 16px;
	flex: none;
}

.kez-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 30px 0 92px;
	border-bottom: 1px solid var(--kez-border);
	background:
		radial-gradient(circle at 76% 20%, rgba(76, 175, 81, 0.11), transparent 29%),
		linear-gradient(180deg, #0d1215 0%, #0b0f12 100%);
}

.kez-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	opacity: 0.23;
	background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}

.kez-hero__glow,
.kez-final-cta__glow {
	position: absolute;
	z-index: -1;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(76, 175, 81, 0.09);
	filter: blur(90px);
	pointer-events: none;
}

.kez-hero__glow {
	top: 80px;
	right: -180px;
}

.kez-breadcrumbs {
	margin-bottom: 48px;
}

.kez-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kez-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #82908a;
	font-size: 12px;
}

.kez-breadcrumbs a:hover {
	color: var(--kez-green-bright);
}

.kez-breadcrumbs [aria-current="page"] {
	color: #c4cec9;
}

.kez-breadcrumb-separator {
	color: #4f5a55;
}

.kez-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.16fr) minmax(370px, 0.84fr);
	align-items: center;
	gap: clamp(48px, 7vw, 90px);
}

.kez-eyebrow,
.kez-section-label,
.kez-kicker {
	margin-bottom: 20px;
	color: var(--kez-green-bright);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.4;
}

.kez-hero h1 {
	max-width: 780px;
	margin-bottom: 25px;
	font-size: clamp(43px, 5.2vw, 70px);
	line-height: 1.04;
	text-wrap: balance;
}

.kez-hero__lead {
	max-width: 710px;
	margin-bottom: 34px;
	color: #b7c2bd;
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: 1.7;
}

.kez-hero__actions,
.kez-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.kez-trust-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 25px 0 0;
	color: #8e9d96;
	font-size: 12px;
	font-weight: 600;
}

.kez-trust-line > span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--kez-green-bright);
	box-shadow: 0 0 0 5px rgba(117, 223, 122, 0.1);
}

.kez-trust-line b {
	color: #4d5953;
}

.kez-developer-card {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border: 1px solid var(--kez-border-strong);
	border-radius: var(--kez-radius-lg);
	background: linear-gradient(145deg, rgba(27, 37, 42, 0.98), rgba(17, 23, 27, 0.98));
	box-shadow: var(--kez-shadow);
}

.kez-developer-card__accent {
	position: absolute;
	top: 0;
	left: 28px;
	right: 28px;
	height: 3px;
	border-radius: 0 0 10px 10px;
	background: linear-gradient(90deg, transparent, var(--kez-green-bright), transparent);
}

.kez-developer-card__identity {
	display: flex;
	align-items: center;
	gap: 17px;
	margin-bottom: 18px;
}

.kez-developer-card__identity img {
	width: 74px;
	height: 74px;
	border: 2px solid rgba(117, 223, 122, 0.38);
	border-radius: 22px;
	object-fit: cover;
	object-position: center 22%;
}

.kez-developer-card__name {
	margin-bottom: 4px;
	color: #fff;
	font-size: 21px;
	font-weight: 700;
}

.kez-developer-card__role {
	margin: 0;
	color: #aeb9b4;
	font-size: 13px;
}

.kez-developer-card__specialties {
	margin-bottom: 16px;
	color: #dbe2df;
	font-size: 13px;
	font-weight: 600;
}

.kez-availability {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 19px;
	padding: 11px 13px;
	border: 1px solid rgba(117, 223, 122, 0.16);
	border-radius: 11px;
	background: rgba(76, 175, 81, 0.075);
	color: #cdeed0;
	font-size: 12px;
	font-weight: 600;
}

.kez-availability span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--kez-green-bright);
	box-shadow: 0 0 0 5px rgba(117, 223, 122, 0.09);
}

.kez-chip-list,
.kez-tech-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kez-chip-list li {
	padding: 7px 10px;
	border: 1px solid var(--kez-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: #bac5c0;
	font-size: 11px;
	font-weight: 600;
}

.kez-developer-card__actions {
	display: grid;
	gap: 10px;
	margin-top: 23px;
}

.kez-card-disclaimer {
	margin: 18px 0 0;
	color: #74817b;
	font-size: 9px;
	line-height: 1.55;
}

.kez-section {
	padding: 104px 0;
}

.kez-section--compact {
	padding: 70px 0;
}

.kez-section--intro {
	padding-top: 90px;
	padding-bottom: 90px;
}

.kez-section--muted {
	border-top: 1px solid var(--kez-border);
	border-bottom: 1px solid var(--kez-border);
	background: var(--kez-bg-soft);
}

.kez-section--navy {
	border-top: 1px solid rgba(90, 167, 255, 0.12);
	border-bottom: 1px solid rgba(90, 167, 255, 0.12);
	background: linear-gradient(145deg, #111c24, #0e151a);
}

.kez-section h2,
.kez-final-cta h2 {
	margin-bottom: 22px;
	font-size: clamp(33px, 4vw, 50px);
	text-wrap: balance;
}

.kez-section-heading {
	max-width: 790px;
	margin-bottom: 52px;
}

.kez-section-heading > p:last-child,
.kez-tech-panel > div > p:last-child,
.kez-upwork-heading > p,
.kez-faq-layout__intro > p {
	margin-bottom: 0;
	color: var(--kez-muted);
	font-size: 17px;
}

.kez-long-copy {
	margin-bottom: 22px;
	color: #b5c0bb;
	font-size: 18px;
	line-height: 1.85;
}

.kez-long-copy:last-child {
	margin-bottom: 0;
}

.kez-symptom-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kez-symptom-grid li {
	display: flex;
	gap: 16px;
	padding: 23px;
	border: 1px solid var(--kez-border);
	border-radius: var(--kez-radius-sm);
	background: rgba(255, 255, 255, 0.022);
}

.kez-check {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	flex: none;
	margin-top: 2px;
	border-radius: 50%;
	background: rgba(76, 175, 81, 0.13);
	color: var(--kez-green-bright);
	font-size: 13px;
	font-weight: 800;
}

.kez-symptom-grid h3,
.kez-service-item h3,
.kez-process-grid h3,
.kez-why-grid h3,
.kez-related h3 {
	margin-bottom: 9px;
	font-size: 17px;
	letter-spacing: -0.015em;
}

.kez-symptom-grid p,
.kez-service-item p,
.kez-process-grid p,
.kez-why-grid p,
.kez-related p {
	margin-bottom: 0;
	color: #9facA6;
	font-size: 14px;
	line-height: 1.72;
}

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

.kez-service-item {
	padding: 28px;
	border: 1px solid var(--kez-border);
	border-radius: var(--kez-radius);
	background: linear-gradient(145deg, rgba(25, 34, 39, 0.8), rgba(17, 23, 27, 0.82));
}

.kez-service-item__icon {
	display: grid;
	place-items: center;
	width: 45px;
	height: 45px;
	margin-bottom: 24px;
	border: 1px solid rgba(117, 223, 122, 0.2);
	border-radius: 13px;
	background: rgba(76, 175, 81, 0.08);
	color: var(--kez-green-bright);
}

.kez-service-icon {
	width: 24px;
	height: 24px;
}

.kez-honest-note {
	display: flex;
	gap: 15px;
	max-width: 920px;
	margin-top: 28px;
	padding: 20px 22px;
	border: 1px solid rgba(90, 167, 255, 0.2);
	border-radius: 14px;
	background: rgba(90, 167, 255, 0.06);
}

.kez-honest-note > span {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	flex: none;
	border-radius: 50%;
	background: rgba(90, 167, 255, 0.14);
	color: #9dc9ff;
	font-family: Georgia, serif;
	font-weight: 700;
}

.kez-honest-note strong {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
}

.kez-honest-note p {
	margin: 0;
	color: #a8b8c4;
	font-size: 13px;
}

.kez-link-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.kez-link-card {
	position: relative;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--kez-radius);
	background: rgba(255, 255, 255, 0.025);
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.kez-link-card:hover {
	transform: translateY(-3px);
	border-color: rgba(117, 223, 122, 0.33);
	background: rgba(117, 223, 122, 0.04);
}

.kez-link-card h3 {
	max-width: 80%;
	margin-bottom: 11px;
	font-size: 21px;
}

.kez-link-card p {
	margin-bottom: 22px;
	color: #9dacb4;
	font-size: 14px;
}

.kez-link-card strong,
.kez-related a > strong {
	color: var(--kez-green-bright);
	font-size: 12px;
}

.kez-link-card__arrow {
	position: absolute;
	top: 24px;
	right: 24px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,.05);
	color: #a7b9c4;
}

.kez-section--process {
	background: radial-gradient(circle at 0 100%, rgba(76, 175, 81, 0.065), transparent 35%);
}

.kez-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: process;
}

.kez-process-grid li {
	position: relative;
	padding: 4px 26px 4px 0;
}

.kez-process-grid li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 21px;
	right: 18px;
	width: calc(100% - 56px);
	height: 1px;
	transform: translateX(100%);
	background: linear-gradient(90deg, rgba(117,223,122,.35), rgba(255,255,255,.06));
}

.kez-process-grid li > span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 25px;
	border: 1px solid rgba(117,223,122,.28);
	border-radius: 50%;
	background: #102017;
	color: var(--kez-green-bright);
	font-size: 11px;
	font-weight: 800;
}

.kez-tech-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: 65px;
	padding: 48px;
	border: 1px solid var(--kez-border);
	border-radius: var(--kez-radius-lg);
	background: linear-gradient(140deg, #141d21, #10161a);
}

.kez-tech-panel h2 {
	margin-bottom: 14px;
	font-size: clamp(27px, 3vw, 38px);
}

.kez-tech-list {
	gap: 10px;
}

.kez-tech-list li {
	padding: 10px 14px;
	border: 1px solid var(--kez-border);
	border-radius: 999px;
	background: rgba(255,255,255,.035);
	color: #c5cfca;
	font-size: 12px;
	font-weight: 600;
}

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

.kez-why-grid article {
	display: grid;
	grid-template-columns: 27px 1fr;
	column-gap: 14px;
	padding: 24px;
	border: 1px solid var(--kez-border);
	border-radius: 16px;
	background: rgba(255,255,255,.02);
}

.kez-why-grid article > span {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	grid-row: span 2;
	border-radius: 8px;
	background: rgba(76,175,81,.11);
	color: var(--kez-green-bright);
	font-size: 12px;
}

.kez-project-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.kez-project-card {
	overflow: hidden;
	border: 1px solid var(--kez-border);
	border-radius: var(--kez-radius);
	background: var(--kez-surface);
}

.kez-project-card__image {
	display: block;
	aspect-ratio: 16 / 8.4;
	overflow: hidden;
	background: #182128;
}

.kez-project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.kez-project-card:hover .kez-project-card__image img {
	transform: scale(1.025);
}

.kez-project-card__body {
	padding: 27px;
}

.kez-project-card h3 {
	margin-bottom: 23px;
	font-size: 23px;
}

.kez-project-card h3 a:hover {
	color: var(--kez-green-bright);
}

.kez-project-card dl,
.kez-project-card dd {
	margin: 0;
}

.kez-project-card dl > div {
	display: grid;
	grid-template-columns: 115px 1fr;
	gap: 13px;
	padding: 10px 0;
	border-top: 1px solid rgba(255,255,255,.065);
}

.kez-project-card dt {
	color: #dfe6e2;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.kez-project-card dd {
	color: #9eaaa4;
	font-size: 12px;
	line-height: 1.65;
}

.kez-inline-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 20px;
	color: var(--kez-green-bright);
	font-size: 13px;
	font-weight: 700;
}

.kez-inline-link:hover span {
	transform: translateX(3px);
}

.kez-section--upwork {
	border-top: 1px solid rgba(117,223,122,.13);
	border-bottom: 1px solid rgba(117,223,122,.13);
	background: linear-gradient(145deg, #102018, #0e1713 60%, #0c1210);
}

.kez-upwork-heading {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: end;
	gap: 80px;
	margin-bottom: 45px;
}

.kez-upwork-heading h2 {
	margin-bottom: 0;
}

.kez-marketplace-card {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--kez-radius-lg);
	background: #151d19;
	box-shadow: var(--kez-shadow);
}

.kez-marketplace-card__visual {
	position: relative;
	min-height: 370px;
	overflow: hidden;
	background: #1c2b35;
}

.kez-marketplace-card__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(5,10,8,.55), transparent 60%);
}

.kez-marketplace-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kez-marketplace-card__visual > span {
	position: absolute;
	z-index: 2;
	left: 22px;
	bottom: 20px;
	padding: 8px 11px;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 8px;
	background: rgba(9,14,12,.8);
	color: #d9e2dd;
	font-size: 10px;
	font-weight: 700;
	backdrop-filter: blur(8px);
}

.kez-marketplace-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(32px, 5vw, 60px);
}

.kez-marketplace-card__body h3 {
	margin-bottom: 20px;
	font-size: clamp(27px, 3vw, 39px);
	line-height: 1.16;
}

.kez-marketplace-card__body > p:not(.kez-kicker) {
	margin-bottom: 30px;
	color: #a8b5af;
	font-size: 16px;
}

.kez-marketplace-card__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.kez-prep-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
	gap: 70px;
	align-items: center;
	padding: 52px;
	border: 1px solid var(--kez-border);
	border-radius: var(--kez-radius-lg);
	background: linear-gradient(145deg, #151e22, #10171a);
}

.kez-prep-card h2 {
	font-size: clamp(31px, 3.6vw, 46px);
}

.kez-prep-card__copy > p:not(.kez-section-label) {
	margin-bottom: 28px;
	color: var(--kez-muted);
}

.kez-prep-card ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kez-prep-card li {
	display: grid;
	grid-template-columns: 40px 1fr;
	align-items: center;
	gap: 15px;
	padding: 16px 0;
	border-bottom: 1px solid var(--kez-border);
}

.kez-prep-card li:last-child {
	border-bottom: 0;
}

.kez-prep-card li span {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(76,175,81,.1);
	color: var(--kez-green-bright);
	font-size: 12px;
	font-weight: 800;
}

.kez-prep-card li p {
	margin: 0;
	color: #c1cbc6;
	font-size: 14px;
	font-weight: 600;
}

.kez-related {
	border-top: 1px solid var(--kez-border);
}

.kez-related__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 30px;
}

.kez-related__header h2 {
	margin: 0;
	font-size: 34px;
}

.kez-related__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.kez-related__grid > a {
	padding: 25px;
	border: 1px solid var(--kez-border);
	border-radius: 15px;
	background: rgba(255,255,255,.02);
}

.kez-related__grid > a:hover {
	border-color: rgba(117,223,122,.3);
}

.kez-related__grid p {
	margin-bottom: 14px;
}

.kez-faq-layout {
	display: grid;
	grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
	align-items: start;
	gap: clamp(55px, 9vw, 110px);
}

.kez-faq-layout__intro {
	position: sticky;
	top: 35px;
}

.kez-faq-list {
	border-top: 1px solid var(--kez-border-strong);
}

.kez-faq-list details {
	border-bottom: 1px solid var(--kez-border-strong);
}

.kez-faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding: 24px 0;
	cursor: pointer;
	color: #f0f4f2;
	font-size: 16px;
	font-weight: 700;
	list-style: none;
}

.kez-faq-list summary::-webkit-details-marker {
	display: none;
}

.kez-faq-list summary span {
	position: relative;
	width: 24px;
	height: 24px;
	flex: none;
	border: 1px solid var(--kez-border);
	border-radius: 50%;
}

.kez-faq-list summary span::before,
.kez-faq-list summary span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 1px;
	background: var(--kez-green-bright);
	transform: translate(-50%, -50%);
}

.kez-faq-list summary span::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform 150ms ease;
}

.kez-faq-list details[open] summary span::after {
	transform: translate(-50%, -50%) rotate(0);
}

.kez-faq-list details > p {
	max-width: 690px;
	margin: -3px 0 24px;
	color: #9faba5;
	font-size: 14px;
}

.kez-final-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 116px 0;
	border-bottom: 1px solid var(--kez-border);
	background:
		linear-gradient(135deg, rgba(76,175,81,.08), transparent 45%),
		#0b100d;
	text-align: center;
}

.kez-final-cta__glow {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.kez-final-cta__inner {
	max-width: 870px;
}

.kez-final-cta h2 {
	font-size: clamp(40px, 5vw, 62px);
}

.kez-final-cta__inner > p:not(.kez-section-label) {
	max-width: 690px;
	margin: 0 auto 32px;
	color: #aeb9b4;
	font-size: 17px;
}

.kez-final-cta__actions {
	justify-content: center;
}

.kez-site-footer {
	padding: 72px 0 28px;
	background: #080b0d;
}

.kez-site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr .8fr .8fr;
	gap: 70px;
	padding-bottom: 55px;
}

.kez-brand--footer {
	margin-bottom: 18px;
}

.kez-site-footer__grid > div > p {
	max-width: 340px;
	margin-bottom: 0;
	color: #78857f;
	font-size: 13px;
}

.kez-site-footer nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
}

.kez-site-footer nav > p {
	margin-bottom: 8px;
	color: #dce3df;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .09em;
}

.kez-site-footer nav a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #7f8d86;
	font-size: 12px;
}

.kez-site-footer nav a:hover {
	color: var(--kez-green-bright);
}

.kez-site-footer nav .kez-external-icon {
	width: 12px;
	height: 12px;
}

.kez-site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 25px;
	border-top: 1px solid rgba(255,255,255,.07);
}

.kez-site-footer__bottom p {
	margin: 0;
	color: #5f6b65;
	font-size: 10px;
}

.kez-sticky-cta {
	position: fixed;
	z-index: 1000;
	right: 24px;
	bottom: 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 540px;
	padding: 13px 14px 13px 20px;
	border: 1px solid var(--kez-border-strong);
	border-radius: 16px;
	background: rgba(19, 27, 30, 0.96);
	box-shadow: 0 18px 50px rgba(0,0,0,.42);
	backdrop-filter: blur(16px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(25px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.kez-sticky-cta[data-visible="true"] {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.kez-sticky-cta > span {
	min-width: 175px;
}

.kez-sticky-cta strong,
.kez-sticky-cta small {
	display: block;
}

.kez-sticky-cta strong {
	font-size: 12px;
}

.kez-sticky-cta small {
	margin-top: 2px;
	color: #819088;
	font-size: 9px;
}

.kez-sticky-cta .kez-button {
	min-height: 42px;
	padding: 9px 14px;
	font-size: 11px;
}

.kez-sticky-cta__close {
	position: absolute;
	top: -9px;
	right: -9px;
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	padding: 0;
	border: 1px solid var(--kez-border-strong);
	border-radius: 50%;
	background: #182025;
	color: #c0cac5;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	line-height: 1;
}

@media (max-width: 1050px) {
	.kez-primary-nav {
		display: none;
	}

	.kez-header-cta {
		margin-left: auto;
	}

	.kez-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(330px, .75fr);
		gap: 42px;
	}

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

	.kez-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 35px 18px;
	}

	.kez-process-grid li::after {
		display: none;
	}
}

@media (max-width: 820px) {
	body.kez-flutter-landing {
		padding-bottom: calc(76px + env(safe-area-inset-bottom));
	}

	body.kez-flutter-landing.kez-sticky-dismissed {
		padding-bottom: 0;
	}

	.kez-shell {
		width: min(calc(100% - 32px), var(--kez-shell));
	}

	.kez-site-header__inner {
		min-height: 68px;
	}

	.kez-header-cta {
		display: none;
	}

	.kez-hero {
		padding-top: 22px;
		padding-bottom: 68px;
	}

	.kez-breadcrumbs {
		margin-bottom: 35px;
	}

	.kez-hero__grid,
	.kez-marketplace-card,
	.kez-prep-card,
	.kez-faq-layout,
	.kez-tech-panel,
	.kez-upwork-heading {
		grid-template-columns: 1fr;
	}

	.kez-hero__grid {
		gap: 45px;
	}

	.kez-hero h1 {
		font-size: clamp(39px, 11vw, 58px);
	}

	.kez-section {
		padding: 78px 0;
	}

	.kez-section--compact {
		padding: 55px 0;
	}

	.kez-symptom-grid,
	.kez-project-grid,
	.kez-link-card-grid,
	.kez-related__grid {
		grid-template-columns: 1fr;
	}

	.kez-tech-panel,
	.kez-prep-card {
		gap: 35px;
		padding: 32px;
	}

	.kez-upwork-heading {
		gap: 18px;
	}

	.kez-marketplace-card__visual {
		min-height: auto;
		aspect-ratio: 16/8.4;
	}

	.kez-faq-layout {
		gap: 45px;
	}

	.kez-faq-layout__intro {
		position: static;
	}

	.kez-site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.kez-site-footer__grid > div {
		grid-column: 1 / -1;
	}

	.kez-sticky-cta {
		right: 0;
		bottom: 0;
		left: 0;
		justify-content: space-between;
		max-width: none;
		padding: 10px max(16px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
		border-right: 0;
		border-bottom: 0;
		border-left: 0;
		border-radius: 0;
		transform: translateY(100%);
	}

	.kez-sticky-cta > span {
		display: none;
	}

	.kez-sticky-cta .kez-button {
		width: 100%;
		min-height: 50px;
		font-size: 13px;
	}

	.kez-sticky-cta__close {
		top: -13px;
		right: 8px;
	}
}

@media (max-width: 580px) {
	.kez-shell {
		width: min(calc(100% - 24px), var(--kez-shell));
	}

	.kez-brand__mark {
		width: 38px;
		height: 38px;
		border-radius: 11px;
	}

	.kez-brand small {
		display: none;
	}

	.kez-hero h1 {
		font-size: clamp(36px, 11.4vw, 48px);
	}

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

	.kez-hero__actions,
	.kez-final-cta__actions,
	.kez-marketplace-card__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.kez-hero__actions .kez-button,
	.kez-final-cta__actions .kez-button,
	.kez-marketplace-card__actions .kez-button {
		width: 100%;
	}

	.kez-developer-card {
		padding: 23px;
		border-radius: 23px;
	}

	.kez-section {
		padding: 66px 0;
	}

	.kez-section h2,
	.kez-final-cta h2 {
		font-size: 34px;
	}

	.kez-section-heading {
		margin-bottom: 36px;
	}

	.kez-section-heading > p:last-child,
	.kez-long-copy,
	.kez-tech-panel > div > p:last-child,
	.kez-upwork-heading > p,
	.kez-faq-layout__intro > p {
		font-size: 15px;
	}

	.kez-symptom-grid,
	.kez-service-grid,
	.kez-why-grid,
	.kez-process-grid {
		grid-template-columns: 1fr;
	}

	.kez-symptom-grid li,
	.kez-service-item {
		padding: 21px;
	}

	.kez-process-grid {
		gap: 30px;
	}

	.kez-process-grid li {
		padding: 0;
	}

	.kez-tech-panel,
	.kez-prep-card {
		padding: 25px;
		border-radius: 20px;
	}

	.kez-link-card {
		padding: 24px;
	}

	.kez-project-card__body {
		padding: 22px;
	}

	.kez-project-card dl > div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.kez-marketplace-card__body {
		padding: 26px 22px;
	}

	.kez-marketplace-card__body h3 {
		font-size: 27px;
	}

	.kez-prep-card li {
		grid-template-columns: 35px 1fr;
	}

	.kez-prep-card li span {
		width: 35px;
		height: 35px;
	}

	.kez-related__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.kez-faq-list summary {
		font-size: 14px;
	}

	.kez-final-cta {
		padding: 80px 0;
	}

	.kez-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.kez-site-footer__grid > div {
		grid-column: auto;
	}

	.kez-site-footer__bottom {
		flex-direction: column;
	}
}

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

	.kez-flutter-landing *,
	.kez-flutter-landing *::before,
	.kez-flutter-landing *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
