@font-face {
	font-family: 'Familjen Grotesk';
	src: url('/assets/fonts/familjen-grotesk-v11-latin-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: optional;
}

@font-face {
	font-family: 'Familjen Grotesk';
	src: url('/assets/fonts/familjen-grotesk-v11-latin-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: optional;
}

@font-face {
	font-family: 'Literata';
	src: url('/assets/fonts/literata-v40-latin-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: optional;
}

@font-face {
	font-family: 'Literata';
	src: url('/assets/fonts/literata-v40-latin-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: optional;
}

:root {
	--glacier: #f4f7f7;
	--surface: #fff;
	--ice: #dce9ec;
	--ice-soft: #eaf2f4;
	--ink: #0d1b1e;
	--muted: #4a5f63;
	--line: #c8d8db;
	--line-soft: #e2ecee;
	--jade: #0e8f6f;
	--jade-deep: #0a6e53;
	--arctic: #2f6f8f;
	--r: 3px;
	--r-btn: 10px;
	--shell: 1320px;
	--gut: clamp(20px, 4vw, 56px);
	--sp: clamp(64px, 7.5vw, 128px);
	--e-out: cubic-bezier(.23, 1, .32, 1);
	--e-io: cubic-bezier(.77, 0, .175, 1);
	--head-h: 74px;
	--cookie-h: 0px;
	--z-head: 30;
	--z-nav: 35;
	--z-chat: 45;
	--z-cookie: 55;
	--z-toast: 65;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--head-h) + 18px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--glacier);
	color: var(--ink);
	font: 400 clamp(16px, 1.05vw, 17.5px)/1.68 'Literata', Georgia, serif;
	overflow-x: hidden;
}

[hidden] {
	display: none !important;
}

img,
svg {
	max-width: 100%;
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.08;
	letter-spacing: -.025em;
	overflow-wrap: break-word;
	word-break: break-word;
	text-wrap: balance;
}

p {
	margin: 0 0 1.05em;
	text-wrap: pretty;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--jade-deep);
	overflow-wrap: break-word;
	word-break: break-word;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.container {
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gut);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.no-select,
.btn,
.nav a,
.burger,
.chat__toggle,
.social {
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	user-select: none;
}

.x-wrap {
	overflow-x: auto;
}

/* Buttons */
.btn {
	position: relative;
	overflow: clip;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 22px;
	border: 0;
	border-radius: var(--r-btn);
	background: var(--jade-deep);
	color: #fff;
	font: 600 15.5px/1 'Familjen Grotesk', system-ui, sans-serif;
	letter-spacing: -.01em;
	cursor: pointer;
	transition: transform 160ms var(--e-out), background-color 200ms var(--e-out);
}

.btn svg {
	width: 17px;
	height: 17px;
	flex: none;
	transition: translate 220ms var(--e-out);
}

.btn:active {
	transform: scale(.97);
}

.btn:focus-visible {
	outline: 2px solid var(--arctic);
	outline-offset: 3px;
}

.hidlink {
	position: absolute;
	inset: 0;
	z-index: -5;
	pointer-events: none;
	overflow: hidden;
	font-size: 0;
	line-height: 0;
	color: transparent;
	text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
	.btn:hover {
		background: var(--jade);
	}

	.btn:hover svg {
		translate: 4px 0;
	}
}

/* Header */
.site-head {
	position: sticky;
	top: 0;
	z-index: var(--z-head);
	background: rgb(244 247 247 / .94);
	border-bottom: 1px solid var(--line-soft);
}

.head__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: var(--head-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
	color: var(--ink);
	font: 700 19.5px/1 'Familjen Grotesk', system-ui, sans-serif;
	letter-spacing: -.03em;
}

.brand svg {
	width: 40px;
	height: 40px;
	flex: none;
}

.nav ul {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.5vw, 26px);
}

.nav a {
	position: relative;
	display: block;
	padding: 6px 2px;
	color: var(--ink);
	text-decoration: none;
	font: 600 15px/1 'Familjen Grotesk', system-ui, sans-serif;
	letter-spacing: -.01em;
	transition: color 200ms var(--e-out);
}

.nav a::before,
.nav a::after {
	position: absolute;
	top: 50%;
	color: var(--jade);
	font-weight: 600;
	opacity: 0;
	transition: opacity 200ms var(--e-out), translate 240ms var(--e-out);
}

.nav a::before {
	content: '[';
	left: -.5em;
	translate: 7px -50%;
}

.nav a::after {
	content: ']';
	right: -.5em;
	translate: -7px -50%;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current] {
	color: var(--jade-deep);
}

.nav a:hover::before,
.nav a:hover::after,
.nav a:focus-visible::before,
.nav a:focus-visible::after,
.nav a[aria-current]::before,
.nav a[aria-current]::after {
	opacity: 1;
	translate: 0 -50%;
}

.burger {
	display: none;
	width: 44px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--surface);
	cursor: pointer;
}

.burger i {
	display: block;
	width: 19px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
	transition: transform 260ms var(--e-out), opacity 160ms var(--e-out);
}

.burger[aria-expanded="true"] i:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.burger[aria-expanded="true"] i:nth-child(2) {
	opacity: 0;
}

.burger[aria-expanded="true"] i:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1220px) {
	.burger {
		display: block;
	}

	.site-head {
		position: sticky;
	}

	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: var(--z-nav);
		background: var(--surface);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 22px 40px -26px rgb(13 27 30 / .3);
		opacity: 0;
		visibility: hidden;
		translate: 0 -8px;
		transition: opacity 220ms var(--e-out), translate 240ms var(--e-out), visibility 240ms;
	}

	.nav.is-open {
		opacity: 1;
		visibility: visible;
		translate: 0 0;
	}

	.nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 6px var(--gut) 14px;
	}

	.nav li + li {
		border-top: 1px solid var(--line-soft);
	}

	.nav a {
		padding: 14px 0;
		font-size: 16px;
	}

	.nav a::before,
	.nav a::after {
		display: none;
	}
}

/* Hero */
.hero {
	padding: clamp(34px, 4.4vw, 72px) 0 var(--sp);
}

.hero__in {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, .78fr);
	gap: clamp(24px, 4vw, 70px);
	align-items: center;
}

.hero h1 {
	font-size: clamp(2.7rem, 6.1vw, 5.2rem);
	letter-spacing: -.035em;
}

.hero h1 .ln {
	display: block;
	overflow: hidden;
}

.hero h1 .ln span {
	display: block;
}

.hero__lead {
	margin: clamp(18px, 2vw, 28px) 0 0;
	font-size: clamp(17px, 1.35vw, 21px);
	color: var(--muted);
}

.hero__art {
	width: 100%;
	height: auto;
	justify-self: end;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
	margin-top: clamp(22px, 2.6vw, 34px);
	padding-top: clamp(18px, 2vw, 26px);
	border-top: 1px solid var(--line);
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--muted);
	letter-spacing: -.01em;
}

.hero__meta b {
	color: var(--ink);
}

/* Top list */
.toplist {
	margin-top: clamp(40px, 5vw, 74px);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	box-shadow: 0 26px 50px -40px rgb(13 27 30 / .45);
}

.dev-row {
	display: grid;
	grid-template-columns: 126px minmax(0, 1fr) 128px auto;
	align-items: center;
	gap: clamp(16px, 2.2vw, 34px);
	padding: clamp(14px, 2vw, 17px) clamp(18px, 2.2vw, 30px);
	transition: background-color 200ms var(--e-out);
}

.dev-row__score {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 9px;
	align-self: stretch;
	padding-left: clamp(14px, 1.8vw, 26px);
	border-left: 1px solid var(--line-soft);
}

.score__num {
	font: 700 27px/1 'Familjen Grotesk', system-ui, sans-serif;
	letter-spacing: -.03em;
	color: var(--ink);
}

.score__den {
	font-size: 15px;
	font-weight: 600;
	color: var(--muted);
}

.dev-row + .dev-row {
	border-top: 1px solid var(--line);
}

.dev-row__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	padding-right: clamp(18px, 2.4vw, 38px);
	border-right: 1px solid var(--line-soft);
}

.dev-row__logo svg {
	width: 62px;
	height: 62px;
}

.dev-row__name {
	font-size: clamp(20px, 1.6vw, 25px);
}

.dev-row__cta .btn {
	min-width: 156px;
}

@media (hover: hover) and (pointer: fine) {
	.dev-row:hover {
		background: var(--ice-soft);
	}
}

/* Stars */
.stars {
	position: relative;
	display: block;
	width: max-content;
	line-height: 1;
	color: var(--line);
}

.stars__row {
	display: flex;
	gap: 2px;
	width: max-content;
}

.stars__row svg {
	width: 15px;
	height: 15px;
	flex: none;
}

.stars__fill {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
	color: #e2a33c;
}

.ticks {
	display: grid;
	gap: 6px;
	margin-top: 6px;
}

.ticks li {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.5;
}

.ticks li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .22em;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--jade) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.8l5 5L20 6.5'/%3E%3C/svg%3E") center/9px 9px no-repeat;
}

/* Section shell */
.sect {
	padding-block: var(--sp);
}

.sect--tint {
	background: var(--ice-soft);
	border-block: 1px solid var(--line-soft);
}

.sect h2 {
	font-size: clamp(1.85rem, 3.4vw, 3.05rem);
	margin-bottom: clamp(20px, 2.4vw, 34px);
}

.sect h3 {
	font-size: clamp(19px, 1.5vw, 23px);
}

.sect h4 {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 15px;
	letter-spacing: .01em;
	color: var(--jade-deep);
	margin: 22px 0 8px;
}

/* 2. What is a game app */
.whatis__text {
	columns: 2 320px;
	column-gap: clamp(28px, 4vw, 68px);
}

.whatis__text p {
	margin-bottom: 1.1em;
}

.whatis__note {
	margin-top: clamp(26px, 3vw, 40px);
	padding: clamp(20px, 2.4vw, 30px);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	font-size: clamp(17px, 1.25vw, 20px);
	font-weight: 500;
}

/* 3. Reviews */
.review {
	display: grid;
	grid-template-columns: minmax(0, .44fr) minmax(0, 1.56fr);
	gap: clamp(20px, 3.4vw, 56px);
	padding-block: clamp(30px, 3.6vw, 52px);
}

.review__id {
	position: sticky;
	top: calc(var(--head-h) + 24px);
	align-self: start;
}

.review + .review {
	border-top: 1px solid var(--line);
}

.review__id svg.dlogo {
	width: 66px;
	height: 66px;
	margin-bottom: 16px;
}

.review__body ul {
	display: grid;
	gap: 7px;
}

.review__body ul li {
	position: relative;
	padding-left: 18px;
	color: var(--muted);
}

.review__body ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .62em;
	width: 7px;
	height: 7px;
	background: var(--jade);
}

.review__body .btn {
	margin-top: 26px;
}

/* 4. Types */
.types__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 1.8vw, 26px);
}

.type-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: clip;
	transition: transform 240ms var(--e-out), box-shadow 240ms var(--e-out), border-color 240ms var(--e-out);
}

.type-card img {
	width: 100%;
	height: auto;
	border-bottom: 1px solid var(--line-soft);
}

.type-card__txt {
	padding: clamp(16px, 1.6vw, 24px);
}

.type-card p {
	margin: 9px 0 0;
	font-size: 15.5px;
	color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
	.type-card:hover {
		transform: translateY(-4px);
		border-color: var(--jade);
		box-shadow: 0 22px 40px -30px rgb(13 27 30 / .5);
	}
}

/* 5. Why develop */
.why__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.6vw, 22px);
	margin-top: clamp(28px, 3vw, 44px);
}

.why-card {
	padding: clamp(18px, 1.9vw, 26px);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	transition: transform 240ms var(--e-out), box-shadow 240ms var(--e-out);
}

.why-card b {
	display: block;
	font: 700 30px/1 'Familjen Grotesk', system-ui, sans-serif;
	color: var(--jade);
	letter-spacing: -.03em;
}

.why-card h3 {
	margin: 12px 0 8px;
}

.why-card p {
	font-size: 15.5px;
	color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
	.why-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 22px 40px -30px rgb(13 27 30 / .5);
	}
}

/* 6. Process */
.process__rail {
	margin-top: clamp(28px, 3vw, 44px);
	counter-reset: step;
}

.step {
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: clamp(16px, 2vw, 30px);
	padding-bottom: clamp(24px, 2.6vw, 38px);
}

.step::after {
	content: '';
	position: absolute;
	left: 26px;
	top: 46px;
	bottom: 0;
	width: 1px;
	background: var(--line);
}

.step:last-child {
	padding-bottom: 0;
}

.step:last-child::after {
	display: none;
}

.step__dot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--surface);
	border: 1px solid var(--jade);
	font: 700 19px/1 'Familjen Grotesk', system-ui, sans-serif;
	color: var(--jade-deep);
	transition: transform 300ms var(--e-out), background-color 300ms var(--e-out), color 300ms var(--e-out);
}

.step p {
	margin: 9px 0 0;
	color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
	.step:hover .step__dot {
		background: var(--jade-deep);
		color: #fff;
		transform: scale(1.06);
	}
}

/* 7. Practices */
.practice__cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(10px, 1.4vw, 18px) clamp(24px, 3.4vw, 54px);
	margin-top: clamp(24px, 2.6vw, 36px);
}

.practice__cols li {
	position: relative;
	padding: 14px 0 14px 32px;
	border-bottom: 1px solid var(--line-soft);
}

.practice__cols li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 17px;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--jade) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.8l5 5L20 6.5'/%3E%3C/svg%3E") center/11px 11px no-repeat;
}

.practice__cols b {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 16.5px;
	display: block;
	margin-bottom: 3px;
}

.practice__cols span {
	color: var(--muted);
	font-size: 15.5px;
}

/* 8. Cost */
.cost__top {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
	gap: clamp(22px, 3.4vw, 56px);
	align-items: center;
}

.cost__top img {
	width: 100%;
	height: auto;
	border: 1px solid var(--line);
	border-radius: var(--r);
}

table.data {
	width: 100%;
	margin-top: clamp(26px, 3vw, 40px);
	border-collapse: collapse;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	font-size: 15.5px;
}

table.data caption {
	text-align: left;
	padding-bottom: 10px;
	color: var(--muted);
	font-size: 15px;
}

table.data th,
table.data td {
	padding: 14px 18px;
	text-align: left;
	border-bottom: 1px solid var(--line-soft);
	vertical-align: top;
}

table.data thead th {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 14.5px;
	letter-spacing: -.005em;
	background: var(--ice-soft);
	white-space: nowrap;
}

table.data tbody th {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-weight: 600;
}

table.data tr:last-child th,
table.data tr:last-child td {
	border-bottom: 0;
}

table.data td b {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	color: var(--jade-deep);
	white-space: nowrap;
}

/* 9. Benefit */
.benefit__wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(22px, 3.4vw, 56px);
}

.benefit__list li {
	position: relative;
	padding: 0 0 16px 30px;
	color: var(--muted);
}

.benefit__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .48em;
	width: 12px;
	height: 12px;
	border: 2px solid var(--jade);
	rotate: 45deg;
}

.benefit__list b {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	color: var(--ink);
}

/* Legal pages */
.legal-head {
	padding: clamp(38px, 5vw, 78px) 0 clamp(22px, 2.6vw, 36px);
	border-bottom: 1px solid var(--line);
}

.legal-head h1 {
	font-size: clamp(2.1rem, 4.4vw, 3.6rem);
}

.legal-head p {
	margin: 16px 0 0;
	color: var(--muted);
}

.legal-content {
	padding-block: clamp(34px, 4.4vw, 66px);
}

.legal-content h2 {
	font-size: clamp(1.35rem, 2.1vw, 1.75rem);
	margin: clamp(30px, 3vw, 44px) 0 12px;
}

.legal-content h2:first-child {
	margin-top: 0;
}

.legal-content ul {
	display: grid;
	gap: 8px;
	margin: 0 0 1.05em;
}

.legal-content ul li {
	position: relative;
	padding-left: 20px;
	color: var(--muted);
}

.legal-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .62em;
	width: 7px;
	height: 7px;
	background: var(--jade);
}

/* Footer */
.site-foot {
	background: var(--ink);
	color: #d5e3e5;
	padding-top: clamp(34px, 4vw, 58px);
}

.foot__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px 24px;
	padding-bottom: clamp(20px, 2.4vw, 30px);
	border-bottom: 1px solid rgb(255 255 255 / .14);
}

.foot__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, .7fr);
	gap: clamp(24px, 4vw, 64px);
	padding-block: clamp(24px, 3vw, 42px);
}

.foot__brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	color: #fff;
	text-decoration: none;
	font: 700 clamp(24px, 2.5vw, 34px)/1 'Familjen Grotesk', system-ui, sans-serif;
	letter-spacing: -.035em;
}

.foot__brand svg {
	width: clamp(32px, 3vw, 40px);
	height: clamp(32px, 3vw, 40px);
}

.foot__about {
	margin: 0;
	color: #a9c1c4;
	font-size: clamp(16px, 1.2vw, 18px);
}

.socials {
	display: flex;
	gap: 10px;
}

.social {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgb(255 255 255 / .22);
	border-radius: 50%;
	color: #d5e3e5;
	transition: background-color 220ms var(--e-out), color 220ms var(--e-out), border-color 220ms var(--e-out);
}

.social svg {
	width: 17px;
	height: 17px;
}

.foot__links {
	display: grid;
	gap: 11px;
}

.foot__links a {
	color: #d5e3e5;
	text-decoration: none;
	font-size: 16px;
	transition: color 200ms var(--e-out), translate 220ms var(--e-out);
}

.foot__bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 34px;
	justify-content: space-between;
	padding: 20px 0 26px;
	border-top: 1px solid rgb(255 255 255 / .14);
	color: #8ea8ac;
	font-size: 14.5px;
}

@media (hover: hover) and (pointer: fine) {
	.social:hover {
		background: var(--jade);
		border-color: var(--jade);
		color: #fff;
	}

	.foot__links a:hover {
		color: #fff;
		translate: 3px 0;
	}
}

/* Cookie banner */
.cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: var(--z-cookie);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px clamp(18px, 2.4vw, 34px);
	padding: 16px var(--gut);
	background: var(--surface);
	border-top: 1px solid var(--line);
	box-shadow: 0 -18px 40px -30px rgb(13 27 30 / .5);
}

.cookie p {
	flex: 1 1 320px;
	margin: 0;
	font-size: 15px;
	color: var(--muted);
}

.cookie strong {
	display: block;
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 16px;
	color: var(--ink);
	margin-bottom: 4px;
}

.cookie__acts {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--line);
}

@media (hover: hover) and (pointer: fine) {
	.btn--ghost:hover {
		background: var(--ice-soft);
		border-color: var(--jade);
	}
}

/* Support chat */
.chat {
	position: fixed;
	right: clamp(14px, 2vw, 26px);
	bottom: calc(clamp(14px, 2vw, 26px) + var(--cookie-h));
	z-index: var(--z-chat);
	pointer-events: none;
	transition: bottom 260ms var(--e-out);
}

.chat__toggle,
.chat__panel {
	pointer-events: auto;
}

.chat__toggle {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-left: auto;
	border: 0;
	border-radius: 50%;
	background: var(--jade-deep);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 16px 34px -16px rgb(10 110 83 / .75);
	transition: transform 200ms var(--e-out), background-color 200ms var(--e-out);
}

.chat__toggle svg {
	width: 25px;
	height: 25px;
}

.chat__toggle:active {
	transform: scale(.95);
}

.chat__panel {
	width: 360px;
	height: 460px;
	max-width: calc(100vw - 28px);
	max-height: calc(100dvh - 120px - var(--cookie-h));
	margin-bottom: 12px;
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: clip;
	box-shadow: 0 16px 36px -24px rgb(13 27 30 / .5);
	transform-origin: bottom right;
	opacity: 0;
	visibility: hidden;
	transform: scale(.96) translateY(8px);
	transition: opacity 220ms var(--e-out), transform 240ms var(--e-out), visibility 240ms;
}

.chat.is-open .chat__panel {
	opacity: 1;
	visibility: visible;
	transform: scale(1) translateY(0);
}

.chat__head {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 13px 14px;
	background: var(--ink);
	color: #fff;
}

.chat__head img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	flex: none;
}

.chat__who {
	flex: 1;
	min-width: 0;
}

.chat__who b {
	display: block;
	font: 600 15.5px/1.2 'Familjen Grotesk', system-ui, sans-serif;
}

.chat__who span {
	font-size: 12.5px;
	color: #9fbabd;
}

.chat__close {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgb(255 255 255 / .12);
	color: #fff;
	cursor: pointer;
	transition: background-color 200ms var(--e-out);
}

.chat__close svg {
	width: 15px;
	height: 15px;
}

.chat__log {
	flex: 1;
	overflow-y: auto;
	padding: 14px;
	display: grid;
	gap: 10px;
	align-content: start;
	background: var(--glacier);
}

.msg {
	max-width: 84%;
	padding: 10px 13px;
	border-radius: var(--r);
	font-size: 14.5px;
	line-height: 1.55;
	animation: msgIn 240ms var(--e-out) both;
}

.msg--bot {
	background: var(--surface);
	border: 1px solid var(--line-soft);
	justify-self: start;
}

.msg--me {
	background: var(--jade-deep);
	color: #fff;
	justify-self: end;
}

.chat__form {
	display: flex;
	gap: 8px;
	padding: 11px;
	border-top: 1px solid var(--line-soft);
	background: var(--surface);
}

.chat__form input {
	flex: 1;
	min-width: 0;
	padding: 11px 13px;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--surface);
	color: var(--ink);
	font: 400 15px/1.4 'Literata', Georgia, serif;
}

.chat__form input::placeholder {
	color: #5d7276;
}

.chat__form input:focus-visible {
	outline: 2px solid var(--arctic);
	outline-offset: 1px;
}

.chat__send {
	width: 44px;
	padding: 0;
	flex: none;
}

@media (hover: hover) and (pointer: fine) {
	.chat__toggle:hover {
		background: var(--jade);
		transform: scale(1.05);
	}

	.chat__close:hover {
		background: rgb(255 255 255 / .24);
	}
}

@keyframes msgIn {
	from {
		opacity: 0;
		translate: 0 6px;
	}
}

/* Above the fold entrance */
@keyframes lineUp {
	from {
		transform: translateY(105%);
	}
}

@keyframes softIn {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
}

.hero h1 .ln span {
	animation: lineUp 900ms var(--e-out) both;
}

.hero h1 .ln:nth-child(2) span {
	animation-delay: 95ms;
}

.hero__lead {
	animation: softIn 760ms var(--e-out) 220ms both;
}

.hero__meta {
	animation: softIn 760ms var(--e-out) 320ms both;
}

.hero__art {
	animation: softIn 820ms var(--e-out) 180ms both;
}

/* Scroll reveal */
.js .reveal {
	opacity: 0;
	transform: translateY(18px);
	filter: blur(4px);
	transition: opacity 620ms var(--e-out), transform 700ms var(--e-out), filter 620ms var(--e-out);
	transition-delay: calc(var(--i, 0) * 70ms);
}

.js .reveal.is-in {
	opacity: 1;
	transform: none;
	filter: none;
}

@media (prefers-reduced-motion: reduce) {

	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.js .reveal {
		opacity: 1;
		transform: none;
		filter: none;
	}
}

/* Responsive */
@media (max-width: 1100px) {
	.hero__in {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
	}

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

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

	.dev-row {
		grid-template-columns: 100px minmax(0, 1fr) 112px auto;
		gap: 16px;
	}

	.dev-row__logo svg {
		width: 54px;
		height: 54px;
	}
}

@media (max-width: 820px) {
	:root {
		--head-h: 66px;
	}

	.hero {
		padding-top: 26px;
	}

	.hero__in {
		grid-template-columns: minmax(0, 1fr);
		gap: 26px;
	}

	.hero__art {
		justify-self: center;
		max-width: 330px;
	}

	.dev-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
		text-align: left;
	}

	.dev-row__logo {
		padding-right: 0;
		border-right: 0;
		padding-bottom: 4px;
	}

	.dev-row__score {
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 12px;
		padding-left: 0;
		border-left: 0;
	}

	.dev-row__cta .btn,
	.dev-row__cta {
		width: 100%;
	}

	.review {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}

	.review__id {
		position: static;
	}

	.cost__top,
	.benefit__wrap,
	.foot__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.practice__cols {
		grid-template-columns: minmax(0, 1fr);
	}

	.whatis__text {
		columns: 1;
	}
}

@media (max-width: 520px) {
	.types__grid,
	.why__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.chat__panel {
		width: min(360px, calc(100vw - 28px));
	}

	.foot__bar {
		gap: 8px;
	}
}

@media (max-width: 430px) {
	.hero h1 {
		font-size: clamp(2.15rem, 11vw, 2.75rem);
	}

	.brand {
		font-size: 17.5px;
	}

	.brand svg {
		width: 26px;
		height: 26px;
	}

	.dev-row__cta .btn {
		min-width: 0;
	}

	.step {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 14px;
	}

	.step__dot {
		width: 44px;
		height: 44px;
		font-size: 17px;
	}

	.step::after {
		left: 21px;
		top: 38px;
	}
}

@media (max-width: 360px) {
	:root {
		--gut: 16px;
	}

	.hero__art {
		max-width: 260px;
	}
}
