* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
	font-family: Inter, Arial, Helvetica, sans-serif;
	background: #f5f5f2;
	color: #13211f;
}

body {
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.legal-page {
	min-height: 100vh;
	padding: 34px 42px 64px;
	background:
		radial-gradient(circle at 80% 20%, rgba(31, 122, 31, 0.12), transparent 34%),
		linear-gradient(180deg, #fbfcf8 0%, #eef3ec 100%);
}

.legal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 72px;
}

.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.brand img {
	height: 22px;
	width: auto;
	display: block;
}

.legal-shell {
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}

.legal-progress {
	margin-bottom: 26px;
}

.progress-label {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 700;
	color: #1f7a1f;
}

.progress-track {
	height: 6px;
	border-radius: 999px;
	background: #e2e5df;
	overflow: hidden;
}

.progress-value {
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #1f7a1f 0%, #49a349 100%);
}

.legal-card {
	background: #ffffff;
	border-radius: 26px;
	border: 1px solid #eceee8;
	box-shadow:
		0 2px 6px rgba(16, 24, 40, 0.03),
		0 24px 60px rgba(16, 24, 40, 0.08);
	padding: 52px;
}

.eyebrow {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1f7a1f;
}

h1 {
	margin: 0;
	font-size: 46px;
	line-height: 1;
	font-weight: 750;
	letter-spacing: -0.055em;
	color: #111917;
}

.intro {
	margin: 22px 0 0;
	max-width: 680px;
	font-size: 17px;
	line-height: 1.75;
	color: #5b6763;
}

.legal-meta {
	margin: 28px 0 38px;
	padding: 14px 18px;
	border-radius: 16px;
	background: #f6f8f6;
	border: 1px solid #e4e9e4;
	color: #5b6763;
	font-size: 14px;
}

section {
	margin-top: 34px;
}

h2 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 750;
	letter-spacing: -0.035em;
	color: #111917;
}

p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.8;
	color: #4f5c58;
}

a {
	color: #1f7a1f;
	font-weight: 700;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.legal-actions {
	margin-top: 42px;
}

.secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 22px;
	border-radius: 14px;
	border: 1px solid #d8dcd9;
	background: #ffffff;
	color: #162220;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.secondary-button:hover {
	background: #f5f7f5;
	text-decoration: none;
}

@media (max-width: 768px) {
	.legal-page {
		padding: 24px 18px 40px;
	}

	.legal-header {
		margin-bottom: 42px;
	}

	.legal-card {
		padding: 34px 24px;
		border-radius: 24px;
	}

	h1 {
		font-size: 38px;
	}

	.intro {
		font-size: 16px;
	}
}