body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background-color: #050505;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08), transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.08), transparent 25%);
    background-attachment: fixed;
}

.glass-panel {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page-specific reveal removed to use global reveal from global.css */

/* Page-specific bg-grid removed to use global bg-grid from global.css */

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background:
        radial-gradient(circle at 16% 14%, rgba(56, 189, 248, 0.14), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(168, 85, 247, 0.12), transparent 30%),
        radial-gradient(circle at 54% 84%, rgba(59, 130, 246, 0.10), transparent 34%);
    filter: blur(20px);
    animation: ambientDrift 18s ease-in-out infinite alternate;
}

.hover-lift {
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

input,
textarea,
select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

nav.glass-panel {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.success-pop {
    animation: popIn 260ms ease-out;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(6px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
