* {
	box-sizing: border-box;
}

:root {
	color-scheme: light;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #f7f8fa;
	color: #161a22;
}

body {
	margin: 0;
	min-height: 100vh;
	background: #f7f8fa;
}

.site-header {
	border-bottom: 1px solid #dce1e8;
	background: #ffffff;
}

.header-inner,
.content-inner,
.hero-inner {
	width: min(1040px, calc(100% - 32px));
	margin: 0 auto;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 74px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 11px;
	color: #161a22;
	text-decoration: none;
}

.brand img,
.app-icon {
	border-radius: 12px;
	object-fit: cover;
}

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

.brand strong {
	font-size: 15px;
}

.brand small {
	color: #687080;
	font-size: 12px;
}

.header-link {
	color: #b83a10;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.hero {
	border-bottom: 1px solid #dce1e8;
	background: #ffffff;
}

.hero-inner {
	padding: 58px 0 54px;
}

.app-icon {
	display: block;
	margin-bottom: 22px;
}

.eyebrow {
	margin: 0 0 8px;
	color: #b83a10;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

h1,
h2 {
	margin: 0;
	letter-spacing: 0;
}

h1 {
	font-size: 50px;
	line-height: 1.1;
}

h2 {
	font-size: 28px;
	line-height: 1.25;
}

p {
	color: #5f6877;
	line-height: 1.6;
}

.summary {
	max-width: 680px;
	margin: 14px 0 25px;
	font-size: 18px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid #f26522;
	border-radius: 6px;
	background: #f26522;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
}

.button:focus-visible {
	outline: 3px solid #2457c5;
	outline-offset: 3px;
}

.button-secondary {
	margin-top: 20px;
	border-color: #173c72;
	background: #173c72;
}

.device-note {
	margin: 14px 0 0;
	color: #687080;
	font-size: 13px;
}

.content-section {
	padding: 44px 0;
	border-bottom: 1px solid #dce1e8;
}

.content-section h2 {
	margin-bottom: 22px;
}

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

.feature-grid article {
	border-left: 3px solid #f26522;
	padding-left: 14px;
}

h3 {
	margin: 0;
	font-size: 18px;
	letter-spacing: 0;
}

.feature-grid p {
	margin: 8px 0 0;
}

.steps-section {
	background: #ffffff;
}

ol {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: steps;
}

ol li {
	counter-increment: steps;
}

ol li::before {
	display: block;
	margin-bottom: 10px;
	color: #b83a10;
	content: "0" counter(steps);
	font-size: 14px;
	font-weight: 750;
}

ol strong,
ol span {
	display: block;
}

ol span {
	margin-top: 5px;
	color: #5f6877;
	line-height: 1.55;
}

.site-footer {
	padding: 22px 0;
	color: #687080;
	font-size: 12px;
}

@media (max-width: 720px) {
	.hero-inner {
		padding: 40px 0;
	}

	h1 {
		font-size: 40px;
	}

	.feature-grid,
	ol {
		grid-template-columns: 1fr;
	}
}
