/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background: white;
	min-height: 100vh;
}

/* Header */
header {
	padding: 40px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.logo h1 {
	font-size: 48px;
	font-weight: 700;
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.logo .app-icon {
	border-radius: 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header Actions */
.header-actions {
	display: flex;
	gap: 16px;
	align-items: center;
}

.signin-button {
	display: inline-block;
	padding: 10px 24px;
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	color: white;
	text-decoration: none;
	border-radius: 20px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
}

.signin-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

/* Main Content */
main {
	padding: 60px 20px;
}

/* Hero Section */
.hero {
	text-align: center;
	margin-bottom: 60px;
}

.hero h2 {
	font-size: 36px;
	color: #222;
	margin-bottom: 20px;
}

.tagline {
	font-size: 18px;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

/* Status Badge */
.status {
	text-align: center;
	margin: 60px 0;
}

.badge {
	display: inline-block;
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.status p {
	color: #666;
	font-size: 16px;
}

/* Features Grid */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin: 60px 0;
}

.feature {
	text-align: center;
	padding: 30px;
	border-radius: 12px;
	background: #f8f9fa;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.feature h3 {
	font-size: 20px;
	color: #333;
	margin-bottom: 10px;
}

.feature p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* CTA Section */
.cta {
	text-align: center;
	margin: 80px 0;
	padding: 60px 20px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 16px;
}

.cta > p:first-child {
	font-size: 24px;
	color: #333;
	margin-bottom: 30px;
	font-weight: 500;
}

/* Email Form */
.email-form {
	max-width: 450px;
	margin: 0 auto 20px;
}

.email-form form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.email-form input[type="email"] {
	flex: 1;
	min-width: 250px;
	padding: 14px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

.email-form input[type="email"]:focus {
	outline: none;
	border-color: #ff6b35;
}

.email-form button {
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	color: white;
	border: none;
	padding: 14px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.email-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.note {
	color: #888;
	font-size: 14px;
	margin-top: 10px;
}

.success {
	color: #4caf50;
	font-size: 18px;
	padding: 20px;
	font-weight: 500;
}

/* Footer */
footer {
	text-align: center;
	padding: 40px 20px;
	border-top: 1px solid #eee;
	margin-top: 80px;
}

footer p {
	color: #666;
	margin-bottom: 20px;
}

footer nav {
	display: flex;
	gap: 30px;
	justify-content: center;
}

footer nav a {
	color: #ff6b35;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

footer nav a:hover {
	color: #e55934;
}

/* Responsive Design */
@media (max-width: 768px) {
	header {
		flex-direction: column;
		gap: 20px;
	}
	
	.logo {
		flex-direction: column;
		gap: 10px;
	}
	
	.logo h1 {
		font-size: 36px;
	}
	
	.hero h2 {
		font-size: 28px;
	}
	
	.tagline {
		font-size: 16px;
	}
	
	.features {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.email-form form {
		flex-direction: column;
	}
	
	.email-form input[type="email"] {
		width: 100%;
	}
	
	.email-form button {
		width: 100%;
	}
	
	footer nav {
		flex-direction: column;
		gap: 15px;
	}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	body {
		background: linear-gradient(135deg, #d84315 0%, #bf360c 100%);
	}
	
	.container {
		background: #1a1a1a;
	}
	
	header {
		border-bottom-color: #333;
	}
	
	.hero h2 {
		color: #f0f0f0;
	}
	
	.tagline {
		color: #ccc;
	}
	
	.status p {
		color: #aaa;
	}
	
	.feature {
		background: #2a2a2a;
	}
	
	.feature h3 {
		color: #f0f0f0;
	}
	
	.feature p {
		color: #bbb;
	}
	
	.cta {
		background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
	}
	
	.cta > p:first-child {
		color: #f0f0f0;
	}
	
	.email-form input[type="email"] {
		background: #333;
		border-color: #444;
		color: #f0f0f0;
	}
	
	.email-form input[type="email"]:focus {
		border-color: #ff6b35;
	}
	
	footer {
		border-top-color: #333;
	}
	
	footer p {
		color: #aaa;
	}
}