/* Whispr Firebase Hosting — Landing Page */

body {
	background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.card {
	background: var(--surface);
	border-radius: 20px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
	max-width: 520px;
	width: 100%;
	overflow: hidden;
}

.card-header {
	background: linear-gradient(135deg, #6C63FF, #4B44CC);
	padding: 2.5rem 2rem 2rem;
	text-align: center;
	color: #FFFFFF;
}

.card-header .logo {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-header h1 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	letter-spacing: -0.5px;
}

.card-header p {
	font-size: 1rem;
	opacity: 0.9;
}

.card-body { padding: 2rem; }

.card-body > p {
	color: var(--text-muted);
	line-height: 1.6;
	font-size: 0.95rem;
}

.feature-list { list-style: none; margin: 1.5rem 0; }

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.95rem;
	color: var(--text);
}

.feature-list li:last-child { border-bottom: none; }

.feature-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: var(--surface-alt);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.tiers {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 1.5rem 0;
}

.tier {
	background: var(--surface-alt);
	border-radius: var(--radius);
	padding: 1.25rem;
	text-align: center;
}

.tier h3 {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--primary);
}

.tier p {
	font-size: 0.8rem;
	color: var(--text-muted);
	line-height: 1.4;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	padding: 1.25rem 2rem;
	border-top: 1px solid var(--border);
}

.footer-links a {
	font-size: 0.85rem;
	font-weight: 500;
}

.copyright {
	text-align: center;
	padding: 0 2rem 1.5rem;
	font-size: 0.75rem;
	color: var(--text-muted);
}

@media (max-width: 480px) {
	.card-header h1 { font-size: 1.8rem; }
	.tiers { grid-template-columns: 1fr; }
}
