Changed around line 1
+ :root {
+ --primary: #2a2f45;
+ --secondary: #4a526b;
+ --accent: #6d7ba4;
+ --text: #f0f4fc;
+ --gradient: linear-gradient(135deg, #2a2f45 0%, #3a405b 100%);
+ }
+
+ * { box-sizing: border-box; margin: 0; padding: 0 }
+
+ body {
+ font-family: 'Segoe UI', system-ui;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--primary);
+ overflow-x: hidden;
+ }
+
+ .hero {
+ height: 100vh;
+ background: var(--gradient);
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::after {
+ content: '';
+ position: absolute;
+ top: 0; left: 0;
+ width: 100%; height: 100%;
+ background: radial-gradient(circle at 50% 50%, transparent 0%, var(--primary) 70%);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ padding: 2rem 5%;
+ position: relative;
+ z-index: 2;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ letter-spacing: -0.05em;
+ background: linear-gradient(45deg, #fff 0%, #aab 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .cta-button {
+ background: var(--accent);
+ padding: 0.75rem 1.5rem;
+ border-radius: 2rem;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .hero-content {
+ position: relative;
+ z-index: 2;
+ text-align: center;
+ padding: 10vh 5%;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 2rem;
+ background: linear-gradient(45deg, #fff 0%, #aab 100%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .terminal {
+ background: #000;
+ max-width: 800px;
+ margin: 2rem auto;
+ border-radius: 1rem;
+ padding: 2rem;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.5);
+ }
+
+ .code {
+ color: #7fffd4;
+ font-family: 'Courier New';
+ font-size: 1.2rem;
+ }
+
+ .features {
+ padding: 5rem 5%;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .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(-10px);
+ }
+
+ .feature-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .security {
+ position: relative;
+ padding: 5rem 5%;
+ background: rgba(0,0,0,0.2);
+ }
+
+ .security-grid {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .layer-number {
+ width: 50px;
+ height: 50px;
+ background: var(--accent);
+ border-radius: 50%;
+ display: grid;
+ place-items: center;
+ font-size: 1.5rem;
+ font-weight: bold;
+ margin-bottom: 1rem;
+ }
+
+ .footer {
+ padding: 5rem 5%;
+ background: rgba(0,0,0,0.3);
+ }
+
+ .footer-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 3rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links { display: none }
+ h1 { font-size: 2.5rem }
+ .security-grid { grid-template-columns: 1fr }
+ }