/* ==========================================================================
   DYNAMIC CINEMATIC SYSTEM & HARDWARE ACCELERATED TRANSITIONS SPEC
   ========================================================================== */

/* Liquid Fluid Backlit Glow Animation */
@keyframes fluidGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
}

.animate-gradient {
    background: linear-gradient(-45deg, rgba(11, 79, 168, 0.15), rgba(227, 6, 19, 0.1), rgba(247, 250, 253, 0.4));
    background-size: 400% 400%;
    animation: fluidGradient 14s ease infinite;
}

/* ==========================================================================
   EXPLICIT FIX FOR MARQUEE SCROLLBAR BLEEDING ENGINE (IMAGE REFACTOR)
   ========================================================================== */
.marquee-section {
    padding: 5rem 0;
    background: var(--dark-void);
    color: var(--white);
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important; /* Locks dynamic boundaries inside layout view */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.marquee-title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.5;
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.marquee-track-container {
    overflow: hidden !important;
    width: 100%;
    display: flex;
    position: relative;
}

/* Linear Cinematic Slide System Rule */
@keyframes infiniteMarqueeSlide {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); } /* Moves exactly halfway matching double track mirror layout */
}

.marquee-content-wrapper {
    display: flex;
    width: max-content;
    will-change: transform; /* Signals GPU execution acceleration */
    animation: infiniteMarqueeSlide 22s linear infinite;
}

/* Luxury Interactive Effect: Slow down loop execution velocity slightly on cursor overlap */
.marquee-track-container:hover .marquee-content-wrapper {
    animation-play-state: paused;
    cursor: grab;
}

.marquee-loop-track {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-right: 5rem; /* Retains seamless transition spacing values between cloned streams */
    white-space: nowrap;
}

.marquee-loop-track span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

/* Elegant Individual Item Glow Track Effect on Hover */
.marquee-loop-track span:hover {
    color: var(--primary);
    text-shadow: 0 0 25px rgba(11, 79, 168, 0.4);
}

/* ==========================================================================
   GLASSMORPHISM DYNAMIC FLOATING ASSETS UTILITIES
   ========================================================================== */
@keyframes softFloat {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -15px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.floating-1 { animation: softFloat 6s ease-in-out infinite; }
.floating-2 { animation: softFloat 8s ease-in-out infinite 1s; }

.glass-card-floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(7, 19, 33, 0.04);
    z-index: 10;
}

.floating-1 { top: 12%; left: -8%; }
.floating-2 { bottom: 15%; right: -5%; }

.icon-box-mesh {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.blue-glow { background: rgba(11, 79, 168, 0.1); color: var(--primary); }
.red-glow { background: rgba(227, 6, 19, 0.1); color: var(--secondary); }