@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
	--bg: #f8f4ea;
	--ink: #1f2a24;
	--card: #F4F0FF;
	--line: rgba(2, 4, 82, 0.15);
	--accent: #4DA3FF;
	--accent-2: #d56a3a;
	--shadow: 0 20px 40px rgba(20, 35, 30, 0.12);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
}

body {
	font-family: 'Manrope', sans-serif;
	line-height: 1.65;
	color: var(--ink);
	background:
		radial-gradient(circle at 10% -10%, #4DA3FF, transparent 38%),
		radial-gradient(circle at 100% 25%, #8C6BFF, transparent 33%),
		var(--bg);
	position: relative;
	padding: 2rem 1rem 4rem;
}

.bg-shape {
	position: fixed;
	width: 36rem;
	height: 36rem;
	border-radius: 999px;
	filter: blur(48px);
	z-index: -1;
	opacity: 0.22;
}

.bg-shape--top {
	background: #e3b38f;
	top: -14rem;
	left: -10rem;
}

.bg-shape--bottom {
	background: #78bead;
	right: -12rem;
	bottom: -18rem;
}

.policy {
	width: min(960px, 100%);
	margin: 0 auto;
	display: grid;
	gap: 1rem;
}

.hero {
	padding: 2rem;
	border: 1px solid var(--line);
	border-radius: 1.25rem;
	background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(253, 247, 237, 0.88));
	box-shadow: var(--shadow);
	animation: rise 0.65s ease-out both;
}

.eyebrow {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: var(--accent);
	font-weight: 800;
}

h1,
h2 {
	font-family: 'Space Grotesk', sans-serif;
	line-height: 1.2;
	margin: 0;
}

h1 {
	font-size: clamp(1.9rem, 4.6vw, 3rem);
	margin-top: 0.5rem;
}

h2 {
	font-size: clamp(1.25rem, 2.7vw, 1.6rem);
	margin-bottom: 0.7rem;
}

.intro,
.updated {
	margin-bottom: 0;
}

.updated {
	margin-top: 0.9rem;
	font-weight: 700;
	color: #2b4c42;
}

.summary,
.card {
	border: 1px solid var(--line);
	border-radius: 1.25rem;
	padding: 1.5rem;
	background: var(--card);
	backdrop-filter: blur(5px);
	box-shadow: var(--shadow);
	animation: rise 0.65s ease-out both;
}

.summary {
	animation-delay: 0.08s;
}

.card:nth-of-type(1) { animation-delay: 0.12s; }
.card:nth-of-type(2) { animation-delay: 0.16s; }
.card:nth-of-type(3) { animation-delay: 0.2s; }
.card:nth-of-type(4) { animation-delay: 0.24s; }
.card:nth-of-type(5) { animation-delay: 0.28s; }
.card:nth-of-type(6) { animation-delay: 0.32s; }
.card:nth-of-type(7) { animation-delay: 0.36s; }
.card:nth-of-type(8) { animation-delay: 0.40s; }
.card:nth-of-type(9) { animation-delay: 0.44s; }

ol,
ul {
	margin-top: 0.4rem;
	margin-bottom: 0;
	padding-left: 1.1rem;
}

li + li {
	margin-top: 0.35rem;
}

p {
	margin-top: 0;
}

a {
	color: var(--accent);
	font-weight: 700;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.16em;
}

a:hover {
	color: var(--accent-2);
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 700px) {
	body {
		padding: 1.1rem 0.75rem 2rem;
	}

	.hero,
	.summary,
	.card {
		padding: 1.15rem;
		border-radius: 1rem;
	}
}

