/* Base Settings */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

/* Typography Tweaks */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

/* Dynamic Background Canvas Container */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
}

/* Glassmorphism Nav Only */
.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

/* Clean Section Styling */
.clean-section {
    position: relative;
    z-index: 10;
}

/* Hover Effects for Text/Icon blocks */
.hover-block {
    transition: transform 0.3s ease-out;
}

.hover-block:hover {
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Map Pulse Animation */
.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #0f172a;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #0f172a;
    border-radius: 50%;
    opacity: 0.7;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.7;
    }
    100% {
        width: 500%;
        height: 500%;
        opacity: 0;
    }
}

/* Gradient Text */
.brand-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
