Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --card-bg: #ffffff;
+ --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 6rem 0;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-in;
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .cta-buttons {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ }
+
+ .btn {
+ padding: 0.75rem 2rem;
+ border-radius: 0.5rem;
+ text-decoration: none;
+ font-weight: 500;
+ transition: all 0.3s ease;
+ }
+
+ .btn.primary {
+ background: white;
+ color: var(--primary-color);
+ }
+
+ .btn.secondary {
+ background: transparent;
+ border: 2px solid white;
+ color: white;
+ }
+
+ .btn:hover {
+ transform: translateY(-2px);
+ box-shadow: var(--shadow);
+ }
+
+ .features-section {
+ padding: 4rem 0;
+ }
+
+ .features-section h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .feature-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: var(--shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-card .icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-section {
+ background: var(--primary-color);
+ color: white;
+ padding: 4rem 0;
+ text-align: center;
+ }
+
+ .cta-section h2 {
+ font-size: 2.5rem;
+ margin-bottom: 2rem;
+ }
+
+ #signup-form {
+ max-width: 500px;
+ margin: 0 auto;
+ display: flex;
+ gap: 1rem;
+ }
+
+ #email {
+ flex: 1;
+ padding: 0.75rem;
+ border: none;
+ border-radius: 0.5rem;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ color: white;
+ padding: 2rem 0;
+ text-align: center;
+ }
+
+ footer nav {
+ margin-bottom: 1rem;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .subtitle {
+ font-size: 1.25rem;
+ }
+
+ .cta-buttons {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+
+ #signup-form {
+ flex-direction: column;
+ }
+ }