Changed around line 1
+ :root {
+ --primary-color: #0066ff;
+ --secondary-color: #001933;
+ --text-color: #ffffff;
+ --background-dark: #000915;
+ --card-bg: #001226;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ background: var(--background-dark);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ background: rgba(0, 0, 0, 0.8);
+ backdrop-filter: blur(10px);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(45deg, var(--secondary-color), var(--background-dark));
+ }
+
+ .hero-content {
+ max-width: 800px;
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1.5rem;
+ background: linear-gradient(to right, var(--primary-color), #00ccff);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .cta-buttons {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-top: 2rem;
+ }
+
+ .btn {
+ padding: 1rem 2rem;
+ border-radius: 50px;
+ text-decoration: none;
+ font-weight: bold;
+ transition: var(--transition);
+ }
+
+ .btn.primary {
+ background: var(--primary-color);
+ color: var(--text-color);
+ }
+
+ .btn.secondary {
+ background: transparent;
+ border: 2px solid var(--primary-color);
+ color: var(--text-color);
+ }
+
+ .btn:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
+ }
+
+ .agent-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem 5%;
+ }
+
+ .agent-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ transition: var(--transition);
+ border: 1px solid rgba(0, 102, 255, 0.1);
+ }
+
+ .agent-card:hover {
+ transform: translateY(-10px);
+ border-color: var(--primary-color);
+ }
+
+ .agent-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ section {
+ padding: 5rem 2rem;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ color: var(--primary-color);
+ }
+
+ footer {
+ background: var(--secondary-color);
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .social-links {
+ margin-bottom: 1rem;
+ }
+
+ .social-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: var(--transition);
+ }
+
+ .social-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text-color);
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--secondary-color);
+ flex-direction: column;
+ padding: 1rem 0;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .cta-buttons {
+ flex-direction: column;
+ }
+ }