.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

html {
    scroll-behavior: auto;
}

section[id] {
    scroll-margin-top: 96px;
}

.material-symbols-filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.nav-blur {
    backdrop-filter: blur(12px);
}

.kinetic-shadow {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.kinetic-shadow-hover:hover {
    box-shadow: 0px 10px 30px rgba(0, 46, 142, 0.1);
    transform: translateY(-4px);
}

@keyframes radar-pulse {
    0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.radar-ring {
    position: absolute;
    left: 50%;
    top: 45%;
    border-radius: 9999px;
    border: 2px solid rgba(0, 65, 194, 0.18);
    animation: radar-pulse 3.2s ease-out infinite;
    pointer-events: none;
}

.radar-ring:nth-child(1) { width: 260px; height: 260px; animation-delay: 0s; }
.radar-ring:nth-child(2) { width: 380px; height: 380px; animation-delay: 0.8s; }
.radar-ring:nth-child(3) { width: 500px; height: 500px; animation-delay: 1.6s; }
.radar-ring:nth-child(4) { width: 620px; height: 620px; animation-delay: 2.4s; }

.brand-logo {
    display: block;
    height: auto;
    width: 220px;
    max-width: 100%;
}

.brand-logo-header {
    width: 190px;
}

.brand-logo-footer {
    width: 210px;
}

@keyframes btn-radar {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 0; }
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(88, 204, 2, 0.7);
    animation: btn-radar 1.6s ease-out infinite;
    pointer-events: none;
}

.step-number-glow {
    overflow: visible;
}

.step-number-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 2px solid rgba(88, 204, 2, 0.65);
    animation: btn-radar 1.4s ease-out infinite;
    pointer-events: none;
}

@keyframes section-focus {
    0% { transform: translateY(12px); opacity: 0.88; }
    100% { transform: translateY(0); opacity: 1; }
}

.section-scroll-focus {
    animation: section-focus 480ms ease-out both;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .section-scroll-focus {
        animation: none;
    }
}
