Changed around line 1
+ :root {
+ --primary: #7b2cbf;
+ --secondary: #240046;
+ --accent: #e0aaff;
+ --background: #10002b;
+ --text: #fff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ .hero {
+ min-height: 100vh;
+ background: linear-gradient(135deg, var(--secondary), var(--background));
+ padding: 2rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--accent), var(--primary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .cta-button {
+ background: var(--primary);
+ padding: 0.5rem 1.5rem;
+ border-radius: 2rem;
+ color: var(--text);
+ }
+
+ .hero-content {
+ text-align: center;
+ margin-top: 10vh;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--accent), var(--primary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .primary-button {
+ background: var(--primary);
+ color: var(--text);
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 2rem;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ margin-top: 2rem;
+ display: inline-block;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .feature-card {
+ background: rgba(255, 255, 255, 0.05);
+ padding: 2rem;
+ border-radius: 1rem;
+ backdrop-filter: blur(10px);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .scanner-section {
+ text-align: center;
+ padding: 4rem 2rem;
+ }
+
+ .scanner-container {
+ position: relative;
+ width: 300px;
+ height: 300px;
+ margin: 2rem auto;
+ }
+
+ .scanner-ring {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ border: 4px solid var(--primary);
+ border-radius: 50%;
+ animation: scan 2s linear infinite;
+ }
+
+ @keyframes scan {
+ 0% {
+ transform: scale(0.8);
+ opacity: 0;
+ }
+ 50% {
+ opacity: 1;
+ }
+ 100% {
+ transform: scale(1.2);
+ opacity: 0;
+ }
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .stat-card {
+ background: rgba(255, 255, 255, 0.05);
+ padding: 2rem;
+ border-radius: 1rem;
+ text-align: center;
+ }
+
+ footer {
+ background: var(--secondary);
+ padding: 2rem;
+ text-align: center;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }