:root {
    --deep-navy: #18181b;
    --accent: #22d3ee;
    --glass: rgba(30, 30, 35, 0.85);
}


body {
    background-color: var(--deep-navy);
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* 2026 Deep Mesh Background */
.background-visual {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(123, 66, 245, 0.25) 0%, transparent 45%), radial-gradient(circle at 90% 90%, rgba(46, 242, 179, 0.2) 0%, transparent 45%);
    z-index: -2;
}

/* Technical Grid Overlay */
.grid-visual {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.heading {
    font-family: 'Space Grotesk', sans-serif;
}

/* Frosted Indigo Glass Cards */
.bento-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

    .bento-card:hover {
        transform: translateY(-8px) scale(1.01);
        border-color: var(--accent);
        box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.2);
        background: rgba(30, 41, 59, 0.9);
    }

.scan-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22d3ee, transparent);
    position: absolute;
    animation: scan 5s infinite linear;
    opacity: 0.5;
}

@keyframes scan {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

.btn-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    transition: opacity 0.3s;
}

    .btn-gradient:hover {
        opacity: 0.9;
    }

.max-w-4xl {
    max-width: 70rem !important;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 0rem !important;
}

.text-glow-header {
    background: linear-gradient(to right, #22d3ee, #bbf7d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.4));
}
