:root {
	--cml-ink: #17171f;
	--cml-muted: #626674;
	--cml-paper: #faf9f5;
	--cml-surface: #ffffff;
	--cml-soft: #eff4f1;
	--cml-line: #dde2df;
	--cml-blue: #3857ff;
	--cml-mint: #00a889;
	--cml-rose: #f05d6a;
	--cml-gold: #f2c94c;
	--cml-shadow: 0 18px 58px rgba(23, 23, 31, 0.12);
	--cml-radius: 8px;
	--cml-header-height: 76px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cml-paper);
	color: var(--cml-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
}

body.nav-is-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

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

::selection {
	background: var(--cml-gold);
	color: var(--cml-ink);
}

.cml-container {
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 1000;
	top: 14px;
	left: 14px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: var(--cml-ink);
	color: var(--cml-surface);
	border-radius: 6px;
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(250, 249, 245, 0.88);
	border-bottom: 1px solid rgba(221, 226, 223, 0.82);
	backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
	box-shadow: 0 12px 34px rgba(23, 23, 31, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--cml-header-height);
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	text-decoration: none;
}

.site-brand__mark {
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	border: 1px solid rgba(23, 23, 31, 0.08);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(56, 87, 255, 0.16);
	object-fit: contain;
}

.site-brand__custom-logo {
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	border-radius: 8px;
	object-fit: cover;
}

.site-brand__text {
	display: grid;
	gap: 0;
	min-width: 0;
}

.site-brand__text strong {
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0;
	white-space: nowrap;
}

.site-brand__text span {
	color: var(--cml-muted);
	font-size: 13px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav__list a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	padding: 0 12px;
	border-radius: 6px;
	color: var(--cml-muted);
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
	background: var(--cml-soft);
	color: var(--cml-ink);
	outline: none;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border: 1px solid var(--cml-line);
	border-radius: 8px;
	background: var(--cml-surface);
	color: var(--cml-ink);
	cursor: pointer;
}

.nav-toggle__bar {
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
}

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 820;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
	outline: none;
}

.button--primary {
	background: var(--cml-blue);
	color: var(--cml-surface);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: #243fd6;
}

.button--secondary {
	background: var(--cml-surface);
	border-color: var(--cml-line);
	color: var(--cml-ink);
}

.button--secondary:hover,
.button--secondary:focus-visible {
	border-color: var(--cml-blue);
	color: var(--cml-blue);
}

.button--app {
	width: fit-content;
	background: var(--cml-ink);
	color: var(--cml-surface);
}

.button--app:hover,
.button--app:focus-visible {
	background: #2a2a35;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 92px 0 36px;
	background:
		linear-gradient(115deg, rgba(56, 87, 255, 0.12), transparent 38%),
		linear-gradient(180deg, #ffffff 0%, #f5f2ec 100%);
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 42%;
	height: 12px;
	background: linear-gradient(90deg, var(--cml-mint), var(--cml-gold), var(--cml-rose));
	content: "";
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
	align-items: center;
	gap: 54px;
}

.hero__copy {
	position: relative;
	z-index: 2;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--cml-blue);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero h1,
.section h2,
.entry h1 {
	margin: 0;
	color: var(--cml-ink);
	font-weight: 880;
	line-height: 1.02;
	letter-spacing: 0;
}

.hero h1 {
	max-width: 760px;
	font-size: 56px;
}

.hero__lead {
	max-width: 650px;
	margin: 24px 0 0;
	color: #353744;
	font-size: 21px;
	line-height: 1.45;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.hero__visual {
	position: relative;
	height: 512px;
	min-width: 0;
}

.phone {
	position: absolute;
	width: 232px;
	aspect-ratio: 314 / 680;
	padding: 8px;
	border: 1px solid rgba(23, 23, 31, 0.12);
	border-radius: 8px;
	background: #101010;
	box-shadow: var(--cml-shadow);
}

.phone img {
	width: 100%;
	height: 100%;
	border-radius: 6px;
	object-fit: cover;
}

.phone--front {
	z-index: 2;
	top: 6px;
	left: 31%;
	transform: rotate(2deg);
}

.phone--back {
	z-index: 1;
	right: 15%;
	bottom: 0;
	transform: rotate(-5deg);
}

.overview {
	background: var(--cml-ink);
	color: var(--cml-surface);
}

.overview__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.14);
}

.overview__grid div {
	min-height: 144px;
	padding: 24px;
	background: var(--cml-ink);
}

.overview__grid span {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	margin-bottom: 18px;
	color: var(--cml-gold);
	font-size: 13px;
	font-weight: 850;
}

.overview__grid h2 {
	margin: 0;
	font-size: 23px;
	line-height: 1.1;
	letter-spacing: 0;
}

.overview__grid p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.72);
}

.section {
	padding: 92px 0;
}

.section__heading {
	max-width: 800px;
	margin-bottom: 36px;
}

.section__heading h2 {
	font-size: 42px;
}

.section__heading--left {
	margin-bottom: 0;
}

.products-grid {
	display: grid;
	gap: 28px;
}

.product {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
	min-height: 600px;
	overflow: hidden;
	border: 1px solid var(--cml-line);
	border-radius: var(--cml-radius);
	background: var(--cml-surface);
	box-shadow: 0 14px 44px rgba(23, 23, 31, 0.08);
}

.product__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 42px;
}

.product__head {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.product__icon {
	width: 76px;
	height: 76px;
	flex: 0 0 auto;
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(23, 23, 31, 0.16);
}

.product__label {
	margin: 0 0 6px;
	color: var(--cml-muted);
	font-size: 13px;
	font-weight: 820;
	text-transform: uppercase;
}

.product h3 {
	margin: 0;
	font-size: 30px;
	line-height: 1.1;
	letter-spacing: 0;
}

.product__summary {
	margin: 28px 0 0;
	color: #353744;
	font-size: 18px;
	line-height: 1.55;
}

.feature-list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 24px 0 0;
	list-style: none;
}

.feature-list li {
	position: relative;
	padding-left: 24px;
	color: #353744;
}

.feature-list li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--cml-mint);
	content: "";
	transform: translateY(-50%);
}

.product--rose .feature-list li::before {
	background: var(--cml-rose);
}

.product__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 26px 0 28px;
}

.product__meta span {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	padding: 0 12px;
	border: 1px solid var(--cml-line);
	border-radius: 999px;
	background: var(--cml-paper);
	color: var(--cml-muted);
	font-size: 13px;
	font-weight: 800;
}

.product__screens {
	position: relative;
	min-height: 600px;
	overflow: hidden;
	background: var(--cml-soft);
}

.product--rose .product__screens {
	background: linear-gradient(180deg, #fff6f3 0%, #f6e9e8 100%);
}

.product--mint .product__screens {
	background: linear-gradient(180deg, #effbf7 0%, #e4f0ed 100%);
}

.screen-shot {
	position: absolute;
	width: 214px;
	aspect-ratio: 314 / 680;
	margin: 0;
	padding: 8px;
	border: 1px solid rgba(23, 23, 31, 0.12);
	border-radius: 8px;
	background: #101010;
	box-shadow: var(--cml-shadow);
}

.screen-shot img {
	width: 100%;
	height: 100%;
	border-radius: 6px;
	object-fit: cover;
}

.screen-shot--1 {
	z-index: 3;
	top: 54px;
	left: 42%;
	transform: translateX(-50%);
}

.screen-shot--2 {
	z-index: 2;
	top: 104px;
	left: 68%;
	transform: translateX(-50%) rotate(4deg);
}

.screen-shot--3 {
	z-index: 1;
	top: 128px;
	left: 21%;
	transform: translateX(-50%) rotate(-5deg);
}

.section--approach {
	background: #f0f4ff;
}

.approach-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
	gap: 56px;
	align-items: start;
}

.approach-points {
	display: grid;
	gap: 18px;
}

.approach-points div {
	padding: 22px 0 22px 24px;
	border-left: 4px solid var(--cml-blue);
}

.approach-points div:nth-child(2) {
	border-left-color: var(--cml-mint);
}

.approach-points div:nth-child(3) {
	border-left-color: var(--cml-rose);
}

.approach-points h3 {
	margin: 0 0 8px;
	font-size: 22px;
	letter-spacing: 0;
}

.approach-points p {
	margin: 0;
	color: var(--cml-muted);
}

.section--company {
	background: var(--cml-paper);
}

.company-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 48px;
	align-items: end;
}

.company-grid h2 {
	max-width: 660px;
	font-size: 42px;
}

.company-grid p {
	max-width: 690px;
	margin: 22px 0 0;
	color: #353744;
	font-size: 18px;
}

.contact-card {
	display: grid;
	gap: 14px;
}

address {
	display: grid;
	gap: 8px;
	padding: 28px;
	border: 1px solid var(--cml-line);
	border-radius: var(--cml-radius);
	background: var(--cml-surface);
	color: var(--cml-muted);
	font-style: normal;
	box-shadow: 0 12px 34px rgba(23, 23, 31, 0.08);
}

address strong {
	color: var(--cml-ink);
}

.contact-link {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	padding: 0 16px;
	border: 1px solid var(--cml-line);
	border-radius: 6px;
	background: var(--cml-surface);
	color: var(--cml-blue);
	font-weight: 820;
	text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
	border-color: var(--cml-blue);
	outline: none;
}

.section--contact {
	padding-top: 0;
}

.contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	padding: 34px;
	border: 1px solid rgba(23, 23, 31, 0.12);
	border-radius: var(--cml-radius);
	background: linear-gradient(90deg, #fff7d6 0%, #eefbf7 100%);
}

.contact-panel h2 {
	max-width: 640px;
	margin: 0;
	font-size: 36px;
	line-height: 1.08;
	letter-spacing: 0;
}

.contact-panel p {
	max-width: 600px;
	margin: 12px 0 0;
	color: var(--cml-muted);
}

.contact-panel__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

.site-footer {
	background: var(--cml-ink);
	color: var(--cml-surface);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 30px 0;
}

.site-footer p,
.site-footer span {
	margin: 4px 0 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
}

.site-footer a {
	display: inline-flex;
	margin-top: 4px;
	color: var(--cml-surface);
	text-decoration: none;
}

.site-footer__meta {
	display: grid;
	gap: 4px;
	text-align: right;
}

.content-page {
	padding: 112px 0 88px;
}

.entry {
	max-width: 760px;
}

.entry + .entry {
	margin-top: 48px;
}

.entry h1 {
	font-size: 42px;
}

.entry h1 a {
	text-decoration: none;
}

.entry__content {
	margin-top: 22px;
	color: #353744;
	font-size: 18px;
}

.entry__content a {
	color: var(--cml-blue);
	font-weight: 750;
}

@media (max-width: 1040px) {
	.hero {
		padding-top: 72px;
	}

	.hero__inner,
	.product,
	.approach-grid,
	.company-grid {
		grid-template-columns: 1fr;
	}

	.hero__visual {
		height: 410px;
	}

	.phone {
		width: 186px;
	}

	.phone--front {
		left: 40%;
	}

	.phone--back {
		right: 21%;
	}

	.product__screens {
		min-height: 500px;
	}

	.screen-shot {
		width: 184px;
	}

	.screen-shot--1 {
		top: 38px;
	}

	.screen-shot--2,
	.screen-shot--3 {
		top: 86px;
	}

	.company-grid {
		align-items: start;
	}

	.contact-panel {
		grid-template-columns: 1fr;
	}

	.contact-panel__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 760px) {
	:root {
		--cml-header-height: 68px;
	}

	.cml-container {
		width: min(100% - 28px, 1120px);
	}

	.site-brand__text span {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		top: var(--cml-header-height);
		right: 14px;
		left: 14px;
		display: none;
		padding: 12px;
		border: 1px solid var(--cml-line);
		border-radius: 8px;
		background: var(--cml-surface);
		box-shadow: var(--cml-shadow);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 2px;
	}

	.site-nav__list a {
		width: 100%;
		justify-content: flex-start;
	}

	.hero {
		padding: 48px 0 26px;
	}

	.hero h1 {
		font-size: 38px;
		line-height: 1.04;
		word-break: normal;
	}

	.hero__lead {
		font-size: 18px;
	}

	.hero__actions,
	.contact-panel__actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.button,
	.contact-link {
		width: 100%;
	}

	.hero__visual {
		height: 322px;
		margin-top: 8px;
	}

	.phone {
		width: 142px;
		padding: 6px;
	}

	.phone--front {
		left: 30%;
		top: 0;
	}

	.phone--back {
		right: 8%;
	}

	.overview__grid {
		grid-template-columns: 1fr;
	}

	.overview__grid div {
		min-height: 118px;
	}

	.section {
		padding: 66px 0;
	}

	.section__heading h2,
	.company-grid h2 {
		font-size: 32px;
		line-height: 1.08;
	}

	.products-grid {
		gap: 18px;
	}

	.product {
		min-height: 0;
	}

	.product__content {
		padding: 26px 20px 30px;
	}

	.product__head {
		align-items: flex-start;
	}

	.product__icon {
		width: 62px;
		height: 62px;
	}

	.product h3 {
		font-size: 24px;
	}

	.product__summary {
		margin-top: 22px;
		font-size: 16px;
	}

	.product__screens {
		min-height: 364px;
	}

	.screen-shot {
		width: 136px;
		padding: 6px;
	}

	.screen-shot--1 {
		top: 26px;
		left: 50%;
	}

	.screen-shot--2 {
		top: 64px;
		left: 78%;
	}

	.screen-shot--3 {
		top: 76px;
		left: 22%;
	}

	.approach-grid {
		gap: 34px;
	}

	.approach-points div {
		padding-left: 18px;
	}

	.company-grid {
		gap: 28px;
	}

	address {
		padding: 22px;
	}

	.contact-panel {
		padding: 26px 20px;
	}

	.contact-panel h2 {
		font-size: 30px;
	}

	.site-footer__inner {
		display: grid;
	}

	.site-footer__meta {
		text-align: left;
	}

	.content-page {
		padding: 72px 0 64px;
	}

	.entry h1 {
		font-size: 32px;
	}
}

@media (max-width: 420px) {
	.site-brand__text strong {
		max-width: 170px;
		white-space: normal;
	}

	.hero h1 {
		font-size: 34px;
	}

	.hero__visual {
		height: 292px;
	}

	.phone {
		width: 124px;
	}

	.product__screens {
		min-height: 332px;
	}

	.screen-shot {
		width: 126px;
	}
}

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

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