[x-cloak] { display: none !important; }

@keyframes drift {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

@keyframes driftData {
    0% { transform: translateX(0); opacity: 0; }
    5% { opacity: 0.3; }
    95% { opacity: 0.3; }
    100% { transform: translateX(60px); opacity: 0; }
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(40px); }
}

@keyframes revealUp {
    0% { 
        opacity: 0; 
        transform: translateY(40px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0);
    }
}

.blueprint-bg {
    background-image: linear-gradient(to right, rgba(100, 116, 139, 0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(100, 116, 139, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: drift 30s linear infinite;
}

.animate-reveal {
    opacity: 0;
    animation: revealUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.data-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #00F5FF;
    pointer-events: none;
}

.animate-data {
    animation: driftData 30s linear infinite;
}

.animate-bob-1 { animation: bob 8s ease-in-out infinite; }
.animate-bob-2 { animation: bob 12s ease-in-out infinite; }
.animate-bob-3 { animation: bob 10s ease-in-out infinite; }

.glow-hover:hover {
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.3);
}

/* Adjust feather icon stroke */
.feather {
    stroke-width: 1.5;
}

/* Adjust lucide icon stroke */
.lucide {
  stroke-width: 1.5;
}

.nav-transition {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyv8-text-slate {
    --tw-text-opacity: 1;
    color: #9da6c2;
}

.cyv8-text-slate-light {
    --tw-text-opacity: 1;
    color: #b2b9d1;
}

.hero-mask-right {
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}
