* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: #0a0e1a;
    color: #d4d4d8;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
	radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
	radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

        /* Header */
        header {
            padding: 32px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 0;
            background: rgba(10, 14, 26, 0.8);
            backdrop-filter: blur(10px);
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 600;
            color: #10b981;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: #a1a1aa;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: #10b981;
        }

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 16px;
}

.footer-description {
    color: #71717a;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 13px;
    color: #a1a1aa;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #71717a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #10b981;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #71717a;
    font-size: 13px;
}

@media (max-width: 1024px) {
    h1 {
	font-size: 48px;
    }

    .architecture {
	grid-template-columns: 1fr;
    }

    .stats-grid {
	grid-template-columns: 1fr;
    }

    .specs-grid {
	grid-template-columns: 1fr;
    }

    .footer-content {
	grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
	font-size: 36px;
    }

    .section-title {
	font-size: 32px;
    }

    .features-icon-row {
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
    }

    .footer-content {
	grid-template-columns: 1fr;
    }
}
