.home {
	text-align: center;
}

.hero {
	padding: 3rem 0;
}

.hero h1 {
	font-size: 3rem;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.hero .subtitle {
	font-size: 1.5rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.hero .description {
	max-width: 600px;
	margin: 0 auto 2rem;
	color: var(--text-light);
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.feature-card {
	background: var(--surface);
	padding: 2rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.feature-card h3 {
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.disclaimer-box {
	background: #fef3c7;
	border: 1px solid #fcd34d;
	border-radius: var(--radius);
	padding: 1.5rem;
	margin-top: 2rem;
	text-align: left;
}

.disclaimer-box h4 {
	color: #92400e;
	margin-bottom: 0.5rem;
}

.disclaimer-box p {
	color: #78350f;
	font-size: 0.875rem;
}