:root {
	color-scheme: light;
	--lemon: #fff9e6;
	--lemon-border: rgba(255, 200, 100, 0.45);
	--mint: #e8faf0;
	--mint-border: rgba(100, 190, 140, 0.35);
	--lilac: #f3eeff;
	--lilac-border: rgba(160, 130, 230, 0.4);
	--peach: #fff0e6;
	--peach-border: rgba(255, 150, 110, 0.4);
	--sky: #e8f4ff;
	--butter: #fff8dc;
	--text: #3d3554;
	--muted: #6b6280;
	--accent: #ea580c;
	--accent-2: #7c3aed;
	--radius: 18px;
	--shadow: 0 8px 32px rgba(61, 53, 84, 0.08);
	--font: "Nunito", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
		sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--font);
	background: linear-gradient(
		165deg,
		var(--butter) 0%,
		var(--sky) 42%,
		var(--mint) 100%
	);
	color: var(--text);
	line-height: 1.65;
	position: relative;
	overflow-x: hidden;
}

.blob {
	position: fixed;
	border-radius: 50%;
	filter: blur(52px);
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}

.blob--1 {
	width: 280px;
	height: 280px;
	background: #ffd6e8;
	top: -100px;
	right: -80px;
}

.blob--2 {
	width: 260px;
	height: 260px;
	background: #c8f5c0;
	bottom: 5%;
	left: -90px;
}

.blob--3 {
	width: 220px;
	height: 220px;
	background: #e0d4ff;
	top: 38%;
	right: 8%;
}

.blob--4 {
	width: 180px;
	height: 180px;
	background: #ffe4a8;
	bottom: -50px;
	right: 20%;
}

main {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0 auto;
	padding: clamp(2rem, 6vw, 3.5rem) 1.35rem 3.5rem;
}

.badge {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #7c3aed;
	margin-bottom: 1.1rem;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--lilac), var(--peach));
	border: 2px solid var(--lilac-border);
	box-shadow: var(--shadow);
}

h1 {
	font-size: clamp(1.85rem, 5vw, 2.55rem);
	font-weight: 800;
	margin: 0 0 1rem;
	line-height: 1.18;
	letter-spacing: -0.02em;
	background: linear-gradient(120deg, #5b21b6 0%, #ea580c 55%, #c2410c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

h2 {
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.28;
	margin-top: 1.85rem;
	margin-bottom: 0;
	padding: 0.28rem 0 0.22rem 0.85rem;
	border-left: 5px solid var(--accent);
	border-radius: 4px 0 0 4px;
	background: linear-gradient(90deg, rgba(234, 88, 12, 0.08), transparent);
}

h2:first-of-type {
	margin-top: 2rem;
}

h2 + .lead {
	margin-top: 0.55rem;
}

h2:nth-of-type(2) {
	border-left-color: #16a34a;
	background: linear-gradient(90deg, rgba(22, 163, 74, 0.1), transparent);
}

h2:nth-of-type(3) {
	border-left-color: #7c3aed;
	background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), transparent);
}

.lead {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--muted);
	margin: 0 0 0.95rem;
	padding: 1rem 1.15rem;
	border-radius: var(--radius);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), var(--sky));
	border: 2px solid rgba(107, 98, 128, 0.12);
	box-shadow: var(--shadow);
}

.cta-note {
	display: inline-block;
	font-weight: 700;
	font-size: 0.95rem;
	color: #c2410c;
	margin: 0.5rem 0 0;
	padding: 0.65rem 1rem;
	border-radius: 14px;
	background: var(--peach);
	border: 2px dashed var(--peach-border);
}

.cta {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.35rem;
	border-radius: 999px;
	background: linear-gradient(145deg, #fb923c, #ea580c);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
	border: 2px solid rgba(255, 255, 255, 0.35);
	transition: transform 0.15s ease, filter 0.15s ease;
}

.cta:hover {
	filter: brightness(1.05);
	transform: translateY(-2px);
}

footer {
	margin-top: 2rem;
	padding: 1.25rem 1.15rem;
	border-radius: var(--radius);
	border: 2px dashed rgba(124, 58, 237, 0.35);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), var(--lilac));
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--muted);
	box-shadow: var(--shadow);
}

footer a {
	color: var(--accent-2);
	font-weight: 800;
	text-decoration: none;
	border-bottom: 2px solid rgba(124, 58, 237, 0.35);
	transition: color 0.15s ease, border-color 0.15s ease;
}

footer a:hover {
	color: var(--accent);
	border-bottom-color: var(--accent);
}

.features {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin-top: 1rem;
}

.feature {
	display: flex;
	gap: 1rem;
	padding: 1.1rem 1.15rem;
	border-radius: var(--radius);
	border: 2px solid transparent;
	box-shadow: var(--shadow);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature:hover {
	transform: translateY(-3px) translateX(2px);
	box-shadow: 0 14px 36px rgba(61, 53, 84, 0.12);
}

.feature:nth-child(6n + 1) {
	background: linear-gradient(135deg, var(--lemon), #fff 60%);
	border-color: var(--lemon-border);
}

.feature:nth-child(6n + 2) {
	background: linear-gradient(135deg, var(--mint), #fff 60%);
	border-color: var(--mint-border);
}

.feature:nth-child(6n + 3) {
	background: linear-gradient(135deg, var(--lilac), #fff 60%);
	border-color: var(--lilac-border);
}

.feature:nth-child(6n + 4) {
	background: linear-gradient(135deg, var(--peach), #fff 60%);
	border-color: var(--peach-border);
}

.feature:nth-child(6n + 5) {
	background: linear-gradient(135deg, var(--sky), #fff 60%);
	border-color: rgba(56, 189, 248, 0.35);
}

.feature:nth-child(6n + 6) {
	background: linear-gradient(135deg, #fdf2f8, #fff 60%);
	border-color: rgba(236, 72, 153, 0.3);
}

.icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, #fff, rgba(255, 255, 255, 0.5));
	border: 2px solid rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(61, 53, 84, 0.08);
}

.feature:nth-child(6n + 1) .icon {
	background: linear-gradient(145deg, #fde68a, #fcd34d);
}

.feature:nth-child(6n + 2) .icon {
	background: linear-gradient(145deg, #a7f3d0, #6ee7b7);
}

.feature:nth-child(6n + 3) .icon {
	background: linear-gradient(145deg, #ddd6fe, #c4b5fd);
}

.feature:nth-child(6n + 4) .icon {
	background: linear-gradient(145deg, #fed7aa, #fdba74);
}

.feature:nth-child(6n + 5) .icon {
	background: linear-gradient(145deg, #bae6fd, #7dd3fc);
}

.feature:nth-child(6n + 6) .icon {
	background: linear-gradient(145deg, #fbcfe8, #f9a8d4);
}

.title {
	margin: 0;
	font-weight: 800;
	font-size: 1rem;
	color: var(--text);
}

.desc {
	margin: 0.35rem 0 0;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--muted);
	line-height: 1.45;
}
