:root {
    --section-px: 1.5rem;
    --accent-glow: 0 0 20px rgba(0, 87, 255, 0.4);
    --highlight-glow: 0 0 15px rgba(0, 229, 255, 0.5);
}

@media (min-width: 768px) {
    :root {
        --section-px: 3rem;
    }
}

@media (min-width: 1280px) {
    :root {
        --section-px: 5%;
    }
}

/* Ultra-Tech grid background */
.bg-grid-tech {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-position: top center;
}

/* Cybernetic noise overlay */
.noise-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 999;
}

.tech-btn {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tech-btn:hover {
    box-shadow: var(--accent-glow);
    transform: translateY(-2px);
}

html {
    scroll-behavior: smooth;
    background-color: #000000;
    color: #E2E8F0;
    font-family: 'Inter', sans-serif;
}

body {
    overflow-x: hidden;
    margin: 0;
}

details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

/* Wistia responsive wrapper */
.wistia_responsive_padding {
    padding: 56.25% 0 0 0;
    position: relative;
}

.wistia_responsive_wrapper {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* Custom Scrollbar for Edge/Brave/Chrome */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #010B19;
}

::-webkit-scrollbar-thumb {
    background: #0057FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00E5FF;
}

/* Typography utilities */
.font-display {
    font-family: 'Montserrat', sans-serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

.font-mono {
    font-family: '"JetBrains Mono"', monospace;
}

/* Logo Slider Animations */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slide-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.slider-track {
    animation: slide 150s linear infinite;
    display: flex;
    width: max-content;
}

.slider-track-reverse {
    animation: slide-reverse 150s linear infinite;
    display: flex;
    width: max-content;
}
