/**
 * Terms & Conditions page
 */

.terms-page main {
	--terms-green: hsl(var(--brand-green));
	--terms-navy: hsl(var(--brand-navy));
}

.terms-hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid hsl(var(--border) / 0.55);
	background: linear-gradient(
		155deg,
		hsl(var(--brand-navy) / 0.12) 0%,
		hsl(var(--background)) 42%,
		hsl(var(--brand-green) / 0.08) 100%
	);
}

.terms-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(at 12% 20%, hsl(var(--brand-green) / 0.16) 0, transparent 40%),
		radial-gradient(at 90% 10%, hsl(var(--brand-navy) / 0.12) 0, transparent 36%);
	pointer-events: none;
}

.terms-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 42rem;
}

.terms-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.9rem;
	border-radius: 9999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: hsl(var(--brand-green));
	background: hsl(var(--brand-navy) / 0.07);
	border: 1px solid hsl(var(--brand-navy) / 0.14);
}

.terms-hero-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: hsl(var(--brand-green));
}

.terms-hero-title {
	margin-top: 1rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: hsl(var(--foreground));
}

.terms-hero-lead {
	margin-top: 1rem;
	font-size: 1.05rem;
	line-height: 1.65;
	color: hsl(var(--muted-foreground));
	max-width: 36rem;
}

.terms-hero-updated {
	margin-top: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: hsl(var(--muted-foreground));
}

.terms-content {
	padding: 3rem 0 4rem;
}

.terms-prose {
	max-width: 46rem;
	margin: 0 auto;
}

.terms-section + .terms-section {
	margin-top: 2.25rem;
	padding-top: 2.25rem;
	border-top: 1px solid hsl(var(--border) / 0.65);
}

.terms-section-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: hsl(var(--brand-navy));
}

.terms-section p {
	margin: 0.85rem 0 0;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: hsl(var(--muted-foreground));
}

.terms-section ul {
	margin: 0.85rem 0 0;
	padding-left: 1.25rem;
	list-style: disc;
}

.terms-section li {
	margin-top: 0.45rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: hsl(var(--muted-foreground));
}

.terms-contact-note {
	margin-top: 2.5rem;
	padding: 1.25rem 1.35rem;
	border-radius: 1rem;
	border: 1px solid hsl(var(--border) / 0.7);
	background: hsl(var(--secondary) / 0.45);
	font-size: 0.875rem;
	line-height: 1.6;
	color: hsl(var(--muted-foreground));
}

.terms-contact-note a {
	color: hsl(var(--brand-navy));
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.terms-contact-note a:hover {
	color: hsl(var(--brand-green));
}
