Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --secondary: #64748b;
+ --bg-light: #ffffff;
+ --bg-dark: #0f172a;
+ --text-light: #334155;
+ --text-dark: #f1f5f9;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-light);
+ background: var(--bg-light);
+ transition: var(--transition);
+ }
+
+ body.dark-theme {
+ color: var(--text-dark);
+ background: var(--bg-dark);
+ }
+
+ nav {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.5rem;
+ background: rgba(255, 255, 255, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ .dark-theme nav {
+ background: rgba(15, 23, 42, 0.9);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: inherit;
+ position: relative;
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ bottom: -5px;
+ left: 0;
+ width: 0;
+ height: 2px;
+ background: var(--primary);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ }
+
+ h1 {
+ font-size: clamp(2.5rem, 5vw, 4rem);
+ line-height: 1.2;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .tagline {
+ font-size: clamp(1.2rem, 2vw, 1.5rem);
+ color: var(--secondary);
+ margin-bottom: 2rem;
+ animation: fadeIn 1s ease-out 0.3s backwards;
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary);
+ color: white;
+ text-decoration: none;
+ border-radius: 50px;
+ transition: var(--transition);
+ animation: fadeIn 1s ease-out 0.6s backwards;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ #menuToggle {
+ display: block;
+ }
+ }