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

:root {
	color-scheme: light;
	--bg: #f6f1e8;
	--bg-dark: #efe7d9;
	--ink: #14242a;
	--muted: #4c5b60;
	--accent: #e76f51;
	--accent-dark: #c95b3f;
	--teal: #1d4e4f;
	--card: #ffffff;
	--shadow: 0 22px 48px rgba(20,  36,  42,  0.12);
	--radius: 18px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Space Grotesk",  system-ui,  -apple-system,  sans-serif;
	color: var(--ink);
	background: var(--bg);
	min-height: 100vh;
	position: relative;
}

a {
	color: inherit;
	text-decoration: none;
}

.background {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	background: radial-gradient(circle at 20% 20%,  #fff4e6 0%,  transparent 55%),  radial-gradient(circle at 80% 10%,  #e8f4f1 0%,  transparent 50%),  radial-gradient(circle at 10% 80%,  #fbe6e2 0%,  transparent 60%),  linear-gradient(140deg,  var(--bg) 0%,  var(--bg-dark) 70%);
}

.background .grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient( rgba(20,  36,  42,  0.05) 1px,  transparent 1px),  linear-gradient(90deg,  rgba(20,  36,  42,  0.05) 1px,  transparent 1px);
	background-size: 64px 64px;
	opacity: 0.5;
}

.background .glow {
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle,  rgba(231,  111,  81,  0.25),  transparent 70%);
	top: -120px;
	right: -120px;
}

.nav {
	max-width: 1120px;
	margin: 24px auto 0;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-family: "Fraunces",  serif;
	font-size: 1.6rem;
	letter-spacing: 0.02em;
	color: var(--teal);
}

.links {
	display: flex;
	gap: 18px;
	font-size: 0.95rem;
	color: var(--muted);
}

.links a:hover {
	color: var(--teal);
}

main {
	max-width: 1120px;
	margin: 48px auto 80px;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.hero {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(auto-fit,  minmax(280px,  1fr));
	align-items: center;
}

.hero-text h1 {
	font-family: "Fraunces",  serif;
	font-size: clamp(2.2rem,  3.4vw,  3.4rem);
	line-height: 1.1;
	margin: 12px 0 18px;
}

.eyebrow {
	text-transform: uppercase;
	font-size: 0.82rem;
	letter-spacing: 0.18em;
	color: var(--teal);
}

.lede {
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 26px;
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-weight: 600;
	transition: transform 0.2s ease,  box-shadow 0.2s ease,  background 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
}

.button:hover {
	transform: translateY(-2px);
	background: var(--accent-dark);
	box-shadow: 0 12px 24px rgba(231,  111,  81,  0.3);
}

.button.ghost {
	background: transparent;
	color: var(--teal);
	border: 1px solid rgba(29,  78,  79,  0.3);
	box-shadow: none;
}

.button.ghost:hover {
	background: rgba(29,  78,  79,  0.08);
}

.hero-card {
	background: var(--card);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 26px;
	display: grid;
	gap: 18px;
}

.stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.stat .label {
	font-size: 0.85rem;
	color: var(--muted);
}

.stat .value {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--teal);
}

.panel {
	background: rgba(255,  255,  255,  0.7);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(6px);
}

.panel-header h2 {
	font-family: "Fraunces",  serif;
	font-size: 2rem;
	margin-bottom: 10px;
}

.panel-header p {
	color: var(--muted);
	font-size: 1rem;
}

.download-grid {
	margin-top: 22px;
	display: grid;
	grid-template-columns: repeat(auto-fit,  minmax(220px,  1fr));
	gap: 20px;
}

.download-card {
	background: var(--card);
	border-radius: 16px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow: 0 14px 30px rgba(20,  36,  42,  0.08);
}

.download-card h3 {
	font-size: 1.2rem;
}

.download-card p {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.download-card .button {
	align-self: flex-start;
}

.download-note {
	margin-top: 18px;
	font-size: 0.95rem;
	color: var(--muted);
}

.download-note a {
	color: var(--teal);
	font-weight: 600;
}

.info-grid {
	margin-top: 22px;
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit,  minmax(220px,  1fr));
}

.info-card {
	background: var(--card);
	border-radius: 14px;
	padding: 20px;
	border: 1px solid rgba(20,  36,  42,  0.08);
}

.info-card h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.info-card p {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.footer {
	max-width: 1120px;
	margin: 0 auto 40px;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	color: var(--muted);
	font-size: 0.9rem;
}

@media (max-width: 720px) {
	.nav {
		flex-direction: column;
		gap: 12px;
	}
	.links {
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}
