#blurred, #blurred > div {
    transition: all 1s;
}

#blurred:hover > div {
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    opacity: 0.8;
    -webkit-transform: scale(0.95);
}

#blurred:hover > div:hover {
    -webkit-filter: blur(0);
    -moz-filter: blur(0);
    -o-filter: blur(0);
    -ms-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: scale(1.05);
}
#hero {
    overflow: hidden;
}
.typed-cursor {
    color: var(--bs-primary);
}
.hero-shorten-form {
    background: var(--bs-white);
    border-radius: 1rem !important;
    padding: 0.5rem !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    border: 1px solid #dee2e6;
    transition: all .3s ease;
}
.hero-shorten-form:focus-within {
    border-color: var(--bs-primary);
    box-shadow: 0 8px 30px rgba(var(--bs-primary-rgb), 0.1);
}
.hero-shorten-form .form-control {
    background-color: transparent;
    border: none;
}
.hero-shorten-form .form-control:focus {
    box-shadow: none;
}
.hero-shorten-form .btn-primary {
    border-radius: .75rem;
}
.hero-visuals-container {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}
.hero-visuals-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 50px);
    max-width: 100%;
    z-index: 10;
    animation: floatUpDown 6s ease-in-out infinite;
}
#hero-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translateZ(-50px);
}
.hero-feature-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 15;
    background: var(--bs-white);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bs-primary);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
@keyframes floatUpDown {
    0%, 100% {
        transform: translate3d(-50%, -50%, 50px) translateY(0);
    }
    50% {
        transform: translate3d(-50%, -50%, 50px) translateY(-15px);
    }
}