:root {
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #020617;
    color: #ffffff;
    overflow-x: hidden;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.bg-grid {
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pipeline-step {
    position: relative;
    padding-left: 3rem;
    border-left: 2px solid rgba(59, 130, 246, 0.2);
}

.pipeline-step::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.neon-border {
    border: 1px solid var(--accent);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.code-block {
    background: #0f172a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
}

@keyframes pulse-slow {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulse-slow 8s infinite;
}

.glow-circle-secondary {
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
}
