.privacy-page {
	background: #fff;
}

.privacy-hero {
	padding: 82px 0 68px;
	border-bottom: 1px solid var(--line);
	background: #fff;
}

.privacy-hero-inner {
	max-width: 980px;
}

.privacy-hero .eyebrow {
	margin-bottom: 14px;
	color: var(--orange);
	font: 800 .78rem/1.3 Inter, Arial, sans-serif;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.privacy-hero h1 {
	max-width: 820px;
	color: var(--navy);
	font-size: clamp(1.95rem, 2.8vw, 2.7rem);
	font-weight: 650;
	line-height: 1.14;
	letter-spacing: -.03em;
}

.privacy-hero h1 + p {
	max-width: 760px;
	margin-top: 24px;
	color: var(--muted);
	font-size: .94rem;
	line-height: 1.58;
}

.privacy-updated {
	display: inline-block;
	margin-top: 22px;
	color: rgba(0,37,66,.58);
	font: 700 .68rem/1.4 Manrope, sans-serif;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.privacy-content-section {
	padding: 64px 0 96px;
	background: var(--surface);
}

.privacy-layout {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}

.privacy-toc {
	position: sticky;
	top: 118px;
	padding: 22px 20px;
	border: 1px solid rgba(0,37,66,.09);
	border-radius: 14px;
	background: rgba(255,255,255,.78);
	box-shadow: 0 12px 34px rgba(0,37,66,.045);
}

.privacy-toc-label {
	margin: 0 0 13px;
	color: var(--orange);
	font: 800 .64rem/1.3 Manrope, sans-serif;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.privacy-toc nav {
	display: grid;
}

.privacy-toc a {
	position: relative;
	display: inline-block;
	width: fit-content;
	justify-self: start;
	padding: 8px 0;
	color: rgba(0,37,66,.68);
	font-size: .78rem;
	font-weight: 650;
	line-height: 1.35;
	transition: color .2s ease;
}

.privacy-toc a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 4px;
	height: 2px;
	border-radius: 999px;
	background: var(--orange);
	transition: right .2s ease;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible,
.privacy-toc a.is-active {
	color: var(--navy);
}

.privacy-toc a.is-active {
	font-weight: 750;
}

.privacy-toc a:hover::after,
.privacy-toc a:focus-visible::after,
.privacy-toc a.is-active::after {
	right: 0;
}

.privacy-document {
	padding: 48px 52px 54px;
	border: 1px solid rgba(0,37,66,.09);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(0,37,66,.055);
}

.privacy-document > .privacy-lead {
	margin: 0 0 34px;
	padding: 0 0 30px;
	border-bottom: 1px solid rgba(0,37,66,.09);
	color: rgba(0,37,66,.78);
	font-size: 1.05rem;
	line-height: 1.75;
}

.privacy-document section {
	scroll-margin-top: 116px;
	padding: 30px 0 32px;
	border-bottom: 1px solid rgba(0,37,66,.075);
}

.privacy-document section:first-of-type {
	padding-top: 0;
}

.privacy-document section:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.privacy-document h2 {
	margin: 0 0 16px;
	color: var(--navy);
	font-size: 1.35rem;
	line-height: 1.3;
	letter-spacing: -.025em;
}

.privacy-document p {
	margin: 0 0 14px;
	color: #4f5b6b;
	font-size: .93rem;
	line-height: 1.78;
}

.privacy-document p:last-child {
	margin-bottom: 0;
}

.privacy-document ul {
	display: grid;
	gap: 9px;
	margin: 14px 0 16px;
	padding: 0;
	list-style: none;
}

.privacy-document li {
	position: relative;
	padding-left: 20px;
	color: #4f5b6b;
	font-size: .92rem;
	line-height: 1.72;
}

.privacy-document li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .72em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
}

.privacy-document strong {
	color: rgba(0,37,66,.88);
	font-weight: 750;
}

.privacy-document a {
	color: var(--navy-3);
	text-decoration: underline;
	text-decoration-color: rgba(240,124,0,.48);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color .2s ease, text-decoration-color .2s ease;
}

.privacy-document a:hover,
.privacy-document a:focus-visible {
	color: var(--orange-dark);
	text-decoration-color: var(--orange);
}

@media (max-width: 900px) {
	.privacy-hero {
		padding: 64px 0 54px;
	}

	.privacy-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.privacy-toc {
		position: static;
	}

	.privacy-toc nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 22px;
	}

	.privacy-document {
		padding: 38px 32px 44px;
	}
}

@media (max-width: 620px) {
	.privacy-hero {
		padding: 48px 0 42px;
	}

	.privacy-hero h1 {
		font-size: clamp(1.75rem, 8vw, 2rem);
	}

	.privacy-hero h1 + p {
		font-size: .94rem;
		line-height: 1.58;
	}

	.privacy-content-section {
		padding: 34px 0 64px;
	}

	.privacy-toc {
		padding: 18px;
	}

	.privacy-toc nav {
		grid-template-columns: 1fr;
	}

	.privacy-document {
		padding: 30px 22px 34px;
		border-radius: 13px;
	}

	.privacy-document > .privacy-lead {
		font-size: .96rem;
	}

	.privacy-document h2 {
		font-size: 1.18rem;
	}

	.privacy-document p,
	.privacy-document li {
		font-size: .9rem;
	}
}
