body { 
    font-family: 'Inter', sans-serif; 
    background: #ffffff;
    color: #0f172a;
}
.hero-mesh {
    background-color: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.05) 0px, transparent 50%);
}
.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    transform: translateY(-4px);
    background: #f8fafc;
}
.btn-primary {
    background: #0f172a;
    color: white;
    transition: all 0.2s;
}
.btn-primary:hover {
    background: #334155;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.2);
}


#seo .text-xs {
    font-size: 15px;
}