:root {
    --bg-color: #0c0c0c;
    /* Deep Charcoal */
    --text-color: #ffffff;
    --primary-color: #C08E7B;
    /* Bronze / Rose Gold */
    --accent-color: #333F48;
    /* Signature Gunmetal */
    --primary-hover: #A67B6A;
    --secondary-color: #1A1F24;
    /* Deep Gunmetal */
    --glass-bg: rgba(51, 63, 72, 0.4);
    /* Gunmetal Tint */
    --glass-border: rgba(192, 142, 123, 0.2);
    /* Rose Gold Border */
    --glass-blur: 15px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Global Background Video */
.global-bg-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    /* Far back foundation */
    overflow: hidden;
    background: #000;
}

.global-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    /* Subtle backdrop */
}

.global-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #0c0c0c;
    /* Root dark foundation to prevent white gaps on mobile */
}

body {
    background: transparent;
    /* Essential for negative z-index layers */
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Glassmorphism Utility */
#plexus-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    /* Above video, below content */
    pointer-events: none;
    background: transparent !important;
}


/* Glass */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Section Transitions */
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.4;
    box-shadow: 0 0 15px var(--primary-color);
    margin: 0;
    position: relative;
    z-index: 5;
}


/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-links a {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}

.mobile-links a:hover {
    color: var(--primary-color);
}

.logo-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    cursor: pointer;
}

.brand-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #C08E7B;
    /* Rose Gold / Copper */
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    position: relative;
}

.brand-top::before,
.brand-top::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #C08E7B;
    opacity: 0.6;
}

.brand-bottom {
    color: #333F48;
    /* Gunmetal Grey */
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.15rem;
    margin-top: -0.2rem;
    display: flex;
    align-items: center;
}



.nav-links a {
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-link {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color) !important;
}

.cta-link:hover {
    background: var(--primary-color);
    color: #000 !important;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#app {
    position: relative;
    z-index: 1;
}

.logo-large {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 4px;
    animation: pulse 2s infinite;
    width: 90%;
    text-align: center;
    max-width: 600px;
}

.logo-large span {
    color: var(--primary-color);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Feature Bridge Section */
.feature-bridge {
    padding: 4rem 5% 2rem;
    background: transparent;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.bridge-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bridge-item {
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bridge-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.bridge-icon {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.bridge-item h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.bridge-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Hero Section */
.hero {
    height: 85vh;
    height: 85dvh;
    /* Dynamic viewport height for mobile */
    min-height: 600px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent !important;
}

#v0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: -2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensure text and buttons are above the event-blocking overlay */
    max-width: 800px;
    padding: 0 5%;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 span {
    display: block;
    color: var(--primary-color);
    font-size: 5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
}

.btn.primary {
    background: var(--primary-color);
    color: #000;
    border: none;
}

.btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn.secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Our Work Gallery */
.our-work {
    padding: 6rem 5%;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 450px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.work-item:hover {
    transform: scale(1.02);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.work-item:hover img {
    transform: scale(1.1);
}



.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.work-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.work-info p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background: transparent;
    text-align: center;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem 2rem;
    text-align: left;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}



.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Quick Pin Card Styling */
.quick-pin-card {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(12, 12, 12, 0.8);
    background-image:
        linear-gradient(rgba(192, 142, 123, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 142, 123, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-pin-card:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.pin-visual {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 142, 123, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.radar-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: radar-wave 2s infinite;
}

.pin-icon {
    font-size: 1.5rem;
    z-index: 1;
}

.pin-content h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.pin-content p {
    font-size: 0.85rem !important;
    opacity: 0.7;
    margin-bottom: 0.5rem !important;
}

.status-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

@keyframes radar-wave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    max-width: 1200px;
    width: 100%;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.input-group select option {
    background: #1a1a1a;
    color: #fff;
}

.hint {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.price-notice {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.national-notice {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid #ff4444;
    border-radius: 8px;
    color: #ff4444;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.1);
    animation: fadeInUp 0.3s ease;
}

.national-notice p {
    margin: 0;
}

.national-notice .small {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

.hidden {
    display: none;
}

.full-width {
    width: 100%;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 142, 123, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(192, 142, 123, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(192, 142, 123, 0);
    }
}

/* AI Concierge Styles */
#ai-concierge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

#chatbot-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
}

#chatbot-trigger:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: #fff;
}

#chatbot-trigger .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
    pointer-events: none;
}

#chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--glass-border);
    border-bottom: none;
    overflow: hidden;
}

#chatbot-window.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chatbot-header {
    padding: 1.5rem;
    background: rgba(192, 142, 123, 0.1);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary-color);
}

#chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

#chatbot-close:hover {
    opacity: 1;
}

#chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

#chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

#chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-bottom-left-radius: 2px;
}

.message.user {
    align-self: flex-end;
    background: var(--primary-color);
    color: #fff;
    border-bottom-right-radius: 2px;
}

.chatbot-input {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 0.8rem;
}

#chatbot-input-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1rem;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
}

#chatbot-send {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* Mobile Adjustments for Chat */
@media (max-width: 768px) {
    #ai-concierge {
        bottom: 20px;
        right: 20px;
    }

    #chatbot-window {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 70px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 85vh;
        /* Prevent overly tall hero on mobile */
        padding-top: 100px;
        padding-bottom: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Scaled for readability */
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero h1 span {
        font-size: 3rem;
    }

    .logo-large {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 5%;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 15px;
    }

    /* Tighter Section Spacing */
    .feature-bridge,
    .our-work,
    .services,
    .contact-section {
        padding: 3rem 5%;
        /* Reduced from 5rem */
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2,
    .services h2,
    .contact-info h2 {
        font-size: 2.2rem;
        /* Scaled down heading */
    }

    /* Bridge Scroll */
    .bridge-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 1rem;
        /* Space for scroll */
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .bridge-container::-webkit-scrollbar {
        display: none;
    }

    .bridge-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 2rem;
    }

    /* Work Gallery Scroll */
    .work-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
    }

    .work-grid::-webkit-scrollbar {
        display: none;
    }

    .work-item {
        flex: 0 0 90%;
        /* Show slightly more of the next item */
        scroll-snap-align: center;
        aspect-ratio: 1 / 1;
        height: auto;
    }

    /* Service Grid - 1 Col for better readability */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    /* Contact Form */
    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    /* Prevent iOS Zoom on inputs */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Chatbot Mobile */
    #ai-concierge {
        bottom: 20px;
        right: 20px;
    }

    #chatbot-window {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 80px;
        /* Above the trigger */
        right: 0;
    }

    .glass-nav {
        padding: 1rem 5%;
    }
}

@media (max-width: 768px) {
    .logo-large {
        font-size: 1.4rem !important;
        letter-spacing: 2px !important;
        padding: 0 10px;
    }

    /* Force hierarchy on mobile to prevent browser play button blockage */
    #v0 {
        z-index: -3 !important;
    }

    .hero-overlay {
        z-index: -2 !important;
    }

    #plexus-canvas {
        z-index: -1 !important;
        /* Move above video but below content */
    }

    html,
    body {
        background-color: #0c0c0c !important;
    }
}