:root {
	--site-bg: #f6f9fc;
	--site-surface: #ffffff;
	--site-surface-blue: #eaf2f8;
	--site-text: #051c39;
	--site-muted: #58728e;
	--site-border: #d8e4ef;
	--site-blue: #0a3967;
	--site-blue-bright: #0b5f98;
	--site-gold: #e8b773;
	--site-gold-soft: #fff6e6;
	--site-shadow: 0 18px 54px rgba(5, 28, 57, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

.site-body {
	background: var(--site-bg);
	color: var(--site-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	margin: 0;
	overflow-x: hidden;
}

.site-body a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--site-border);
	display: flex;
	gap: 24px;
	justify-content: space-between;
	left: 0;
	padding: 16px max(24px, calc((100vw - 1180px) / 2));
	position: sticky;
	right: 0;
	top: 0;
	z-index: 10;
}

.site-brand,
.site-nav,
.site-actions,
.download-row,
.setup-steps,
.site-footer nav {
	align-items: center;
	display: flex;
}

.site-brand {
	font-size: 22px;
	font-weight: 850;
	gap: 12px;
	min-width: max-content;
}

.site-brand-mark {
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--site-border);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(5, 28, 57, 0.12);
	display: inline-flex;
	height: 44px;
	justify-content: center;
	overflow: hidden;
	width: 44px;
}

.site-brand-mark img {
	display: block;
	height: 44px;
	width: 44px;
}

.site-nav {
	color: #314d6d;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 760;
	gap: 8px;
	justify-content: flex-end;
}

.site-nav a {
	border-radius: 8px;
	padding: 9px 11px;
}

.site-nav a:hover,
.site-nav-action {
	background: var(--site-surface-blue);
	color: var(--site-blue);
}

.site-hero {
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fbfe 60%, #eef5fa 100%);
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
	min-height: 720px;
	padding: 72px max(24px, calc((100vw - 1180px) / 2)) 36px;
}

.site-hero-copy {
	align-self: center;
	max-width: 580px;
	min-width: 0;
}

.site-hero h1 {
	font-size: 72px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.95;
	margin: 0 0 20px;
}

.site-hero-lede {
	color: var(--site-blue);
	font-size: 28px;
	font-weight: 760;
	line-height: 1.18;
	margin: 0 0 18px;
}

.site-hero-text,
.section-head p,
.privacy-copy p,
.release-panel p,
.site-footer p,
.policy-panel p {
	color: var(--site-muted);
}

.site-hero-text {
	font-size: 18px;
	margin: 0 0 30px;
	max-width: 520px;
}

.site-actions {
	flex-wrap: wrap;
	gap: 12px;
}

.site-button {
	align-items: center;
	background: var(--site-blue);
	border: 1px solid var(--site-blue);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 820;
	justify-content: center;
	min-height: 44px;
	padding: 11px 16px;
}

.site-body .site-button {
	color: #ffffff;
}

.site-button:hover {
	background: #061d3a;
	border-color: #061d3a;
}

.site-button.secondary {
	background: #ffffff;
	border-color: var(--site-border);
	color: var(--site-text);
}

.site-body .site-button.secondary {
	color: var(--site-text);
}

.site-button.secondary:hover {
	background: var(--site-surface-blue);
	border-color: #bfd2e3;
}

.site-button.text {
	background: transparent;
	border-color: transparent;
	color: var(--site-blue);
	padding-left: 0;
	padding-right: 0;
}

.site-body .site-button.text {
	color: var(--site-blue);
}

.site-button.compact {
	min-height: 38px;
	padding: 8px 12px;
}

.site-note {
	color: #314d6d;
	font-size: 14px;
	font-weight: 760;
	margin: 18px 0 0;
}

.site-hero-visual {
	align-items: center;
	display: grid;
	justify-items: center;
	min-height: 520px;
	min-width: 0;
	position: relative;
}

.site-orbit {
	background: #ffffff;
	border: 1px solid var(--site-border);
	border-radius: 8px;
	box-shadow: var(--site-shadow);
	height: 420px;
	overflow: hidden;
	position: absolute;
	right: 42px;
	top: 8px;
	width: 420px;
}

.site-orbit img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.device-stack {
	align-items: flex-end;
	display: flex;
	gap: 18px;
	max-width: 100%;
	position: relative;
	z-index: 1;
}

.device-card {
	background: #ffffff;
	border: 1px solid rgba(216, 228, 239, 0.88);
	border-radius: 8px;
	box-shadow: var(--site-shadow);
	color: var(--site-text);
}

.device-card.laptop {
	min-height: 250px;
	padding: 16px;
	width: 360px;
}

.device-window {
	display: flex;
	gap: 6px;
	margin-bottom: 18px;
}

.device-window span {
	background: var(--site-gold);
	border-radius: 99px;
	height: 8px;
	width: 8px;
}

.device-panel {
	background: linear-gradient(145deg, #f7fbff 0%, #eaf2f8 100%);
	border: 1px solid var(--site-border);
	border-radius: 8px;
	min-height: 190px;
	padding: 22px;
}

.device-panel strong,
.device-card.phone strong {
	display: block;
	font-size: 24px;
	line-height: 1.1;
	margin-bottom: 6px;
}

.device-panel small,
.device-card.phone small {
	color: var(--site-muted);
	display: block;
	font-size: 13px;
	font-weight: 700;
}

.device-lines {
	display: grid;
	gap: 10px;
	margin-top: 30px;
}

.device-lines span {
	background: #d0dfeb;
	border-radius: 99px;
	display: block;
	height: 9px;
}

.device-lines span:first-child {
	background: var(--site-blue);
	width: 78%;
}

.device-lines span:nth-child(2) {
	width: 92%;
}

.device-lines span:nth-child(3) {
	width: 58%;
}

.device-card.phone {
	margin-bottom: 28px;
	min-height: 180px;
	padding: 18px;
	width: 150px;
}

.phone-meter {
	background: #dce8f1;
	border-radius: 999px;
	height: 8px;
	margin-top: 44px;
	overflow: hidden;
}

.phone-meter span {
	background: var(--site-gold);
	display: block;
	height: 100%;
	width: 64%;
}

.site-section {
	padding: 86px max(24px, calc((100vw - 1180px) / 2));
}

.section-head {
	margin-bottom: 34px;
	max-width: 680px;
}

.section-head h2,
.privacy-copy h2,
.policy-panel h1 {
	font-size: 44px;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0 0 14px;
}

.section-head p,
.privacy-copy p {
	font-size: 18px;
	margin: 0;
}

.section-head .section-note {
	border-left: 3px solid var(--site-gold);
	color: #314d6d;
	font-size: 14px;
	font-weight: 700;
	margin-top: 14px;
	max-width: 620px;
	padding-left: 12px;
}

.downloads-section {
	background: #ffffff;
}

.download-layout {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) 340px;
}

.download-list {
	border: 1px solid var(--site-border);
	border-radius: 8px;
	overflow: hidden;
}

.download-row {
	background: #ffffff;
	border-bottom: 1px solid var(--site-border);
	gap: 16px;
	min-height: 86px;
	padding: 18px;
}

.download-row:last-child {
	border-bottom: 0;
}

.platform-mark {
	align-items: center;
	background: var(--site-surface-blue);
	border-radius: 8px;
	color: var(--site-blue);
	display: inline-flex;
	font-size: 16px;
	font-weight: 900;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.download-row strong {
	display: block;
	font-size: 18px;
	line-height: 1.2;
}

.download-row span {
	color: var(--site-muted);
	display: block;
	font-size: 13px;
	font-weight: 720;
	margin-top: 3px;
}

.download-action {
	background: var(--site-blue);
	border: 1px solid var(--site-blue);
	border-radius: 8px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 820;
	margin-left: auto;
	min-width: 112px;
	padding: 9px 12px;
	text-align: center;
}

.site-body .download-action {
	color: #ffffff;
}

.download-action.muted {
	background: #f4f8fb;
	border-color: var(--site-border);
	color: var(--site-muted);
}

.site-body .download-action.muted {
	color: var(--site-muted);
}

.release-panel {
	align-self: start;
	background: linear-gradient(180deg, var(--site-gold-soft) 0%, #ffffff 100%);
	border: 1px solid #f0d5a8;
	border-radius: 8px;
	padding: 24px;
}

.release-panel h3,
.privacy-panel h3,
.site-footer h2,
.policy-panel h2 {
	font-size: 20px;
	line-height: 1.2;
	margin: 0 0 10px;
}

.release-panel p {
	font-size: 14px;
	margin: 0 0 14px;
}

.privacy-section {
	background: linear-gradient(180deg, #f8fbfe 0%, #eef5fa 100%);
	display: grid;
	gap: 44px;
	grid-template-columns: 0.82fr 1fr;
}

.privacy-copy {
	align-self: start;
}

.privacy-panel {
	background: #ffffff;
	border: 1px solid var(--site-border);
	border-radius: 8px;
	box-shadow: 0 14px 40px rgba(5, 28, 57, 0.08);
	display: grid;
	gap: 0;
}

.privacy-panel article {
	border-bottom: 1px solid var(--site-border);
	padding: 24px;
}

.privacy-panel article:last-child {
	border-bottom: 0;
}

.privacy-panel p {
	color: var(--site-muted);
	margin: 0;
}

.start-section {
	background: #ffffff;
}

.setup-steps {
	counter-reset: setup;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.setup-steps li {
	align-items: center;
	background: #f8fbfe;
	border: 1px solid var(--site-border);
	border-radius: 8px;
	display: flex;
	flex: 1;
	gap: 12px;
	min-height: 82px;
	min-width: 0;
	padding: 16px;
}

.setup-steps span {
	align-items: center;
	background: var(--site-blue);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 850;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.setup-steps strong {
	font-size: 15px;
	line-height: 1.25;
}

.site-footer {
	background: var(--site-text);
	color: #ffffff;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 48px max(24px, calc((100vw - 1180px) / 2));
}

.site-footer h2 {
	color: #ffffff;
}

.site-footer p {
	margin: 0 0 10px;
	max-width: 560px;
}

.site-footer a {
	color: #ffffff;
	font-weight: 800;
}

.site-footer nav {
	align-self: start;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.site-footer-note {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	grid-column: 1 / -1;
	padding-top: 18px;
}

.policy-main {
	padding: 58px max(24px, calc((100vw - 840px) / 2)) 90px;
}

.policy-panel {
	background: #ffffff;
	border: 1px solid var(--site-border);
	border-radius: 8px;
	box-shadow: 0 16px 44px rgba(5, 28, 57, 0.08);
	padding: 34px;
}

.policy-panel p {
	margin: 0 0 22px;
}

.policy-panel h2 {
	margin-top: 28px;
}

@media (max-width: 980px) {
	.site-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		position: static;
	}

	.site-nav {
		justify-content: flex-start;
	}

	.site-hero,
	.privacy-section,
	.download-layout {
		grid-template-columns: 1fr;
	}

	.site-hero {
		min-height: 0;
		padding-top: 56px;
	}

	.site-hero-visual {
		min-height: 430px;
	}

	.site-orbit {
		height: 330px;
		right: 50%;
		top: 0;
		transform: translateX(50%);
		width: 330px;
	}

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

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

	.site-footer nav {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.site-brand {
		min-width: 0;
	}

	.site-nav {
		font-size: 13px;
		gap: 6px;
		width: 100%;
	}

	.site-nav a {
		padding: 7px;
	}

	.site-header,
	.site-section,
	.site-hero,
	.site-footer,
	.policy-main {
		padding-left: 18px;
		padding-right: 18px;
	}

	.site-hero {
		gap: 22px;
		padding-bottom: 24px;
		padding-top: 28px;
	}

	.site-hero h1 {
		font-size: 44px;
	}

	.site-hero-lede {
		font-size: 20px;
		max-width: 320px;
	}

	.site-hero-text {
		max-width: 340px;
	}

	.section-head h2,
	.privacy-copy h2,
	.policy-panel h1 {
		font-size: 34px;
	}

	.device-stack {
		align-items: flex-end;
		flex-direction: row;
		gap: 12px;
		justify-content: center;
		width: 100%;
	}

	.site-hero-visual {
		min-height: 244px;
	}

	.site-orbit {
		height: 190px;
		width: 190px;
	}

	.device-card.laptop {
		flex: 0 1 260px;
		min-height: 170px;
		width: min(68vw, 260px);
	}

	.device-panel {
		min-height: 114px;
		padding: 16px;
	}

	.device-card.phone {
		display: none;
	}

	.download-row {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.download-action {
		margin-left: 58px;
	}

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