/* Mister Nguyen Agency - Main Stylesheet */
/* Simplified from Next.js globals.css - No Tailwind dependencies */

/* CSS Variables */
/* CSS Variables */
:root {
    --background: #0f172a;
    /* Slate 900 - Deep navy matching the platform page */
    --foreground: #f8fafc;
    --card-bg: rgba(51, 65, 85, 0.5);
    /* Slate 700 with opacity */
    --card-border: rgba(255, 255, 255, 0.3);
    --text-primary: #f1f5f9;
    --text-secondary: #e2e8f0;
    /* Slate 200 - even lighter gray */
    --accent-primary: #38bdf8;
    --accent-secondary: #818cf8;
    --accent-gradient: linear-gradient(135deg, #38bdf8, #818cf8, #c084fc);
}

/* Reset */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #020617 0%, #0f172a 50%, #020617 100%);
    color: var(--foreground);
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enterprise Dark Background with VIBRANT Mesh Gradients */
/* Lighter, richer, more colorful "Cosmic Glass" effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Top Left - vivid cyan/blue - Increased opacity */
        radial-gradient(circle at 15% 0%, rgba(56, 189, 248, 0.45), transparent 50%),
        /* Top Right - bright purple - Increased opacity */
        radial-gradient(circle at 85% 10%, rgba(192, 132, 252, 0.45), transparent 50%),
        /* Bottom Center - deep indigo - Increased opacity */
        radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.5), transparent 50%),
        /* Center subtle glow */
        radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15), transparent 60%),
        /* Base: Lighter Slate Gradient */
        linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    z-index: -1;
}

/* Enhanced Glassmorphism Card with Gradient Border */
.glass-card {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    /* Lighter slate base */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        /* Slightly softer shadow */
        0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    /* Thicker gradient border */
    background: linear-gradient(135deg,
            var(--glow-color, rgba(56, 189, 248, 0.5)),
            rgba(255, 255, 255, 0.1),
            var(--glow-color, rgba(56, 189, 248, 0.5)));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    /* Always visible hint */
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-6px);
    background: rgba(30, 41, 59, 0.8);
    box-shadow:
        0 20px 64px rgba(0, 0, 0, 0.4),
        0 0 40px var(--glow-color, rgba(56, 189, 248, 0.2));
    /* Cyan glow */
}

.glass-card:hover::before {
    opacity: 1;
}

/* Accent Gradient Text - Enhanced */
.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Button Styles - Enhanced with Vibrant Gradients */
/* Button Styles - Enhanced with Vibrant Gradients */
.btn-primary {
    position: relative;
    background: transparent;
    /* Move background to ::after */
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow:
        0 4px 16px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1;
    /* Establish stacking context */
}

/* Base Background */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    background-size: 200% 200%;
    z-index: -2;
    /* Behind everything */
    transition: opacity 0.3s ease;
}

/* Hover Glow */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    /* Behind text, in front of base */
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(139, 92, 246, 0.3);
    animation: gradient-shift 2s ease infinite;
    color: white !important;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(59, 130, 246, 0.2),
        0 0 30px rgba(59, 130, 246, 0.1);
    color: white !important;
}

/* Container Utilities */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Spacing */
.section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    /* Pop brightness */
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Link Styles */
a {
    color: inherit;
    text-decoration: none;
}

/* Animated Data Nexus Background (for hero section) */
.data-nexus-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
}

.data-nexus-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Data visualization grid pattern */
.grid-pattern {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Subtle Moving Gradient for Hero */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #1e293b);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



/* Infinite Scroll Marquee */
.marquee-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Card Stream Animation Styles */
#card-stream-section {
    position: relative;
    width: 100vw;
    /* Force full viewport width */
    left: 50%;
    transform: translateX(-50%);
    /* Center strictly */
    height: 400px;
    overflow: hidden;
    /* Keep hidden to prevent horizontal scrollbar on page */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stream {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 20;
    /* Ensure cards are ABOVE scanner (z-5) */
    padding-bottom: 2.5rem;
    /* Visual adjustment: 40px padding shifts center up by 20px (60/20 -> 40/40) */
}

/* Card Line Container */
.card-line {
    display: flex;
    align-items: center;
    gap: 32px;
    /* 2rem */
    will-change: transform;
    cursor: grab;
    padding-left: 50vw;
    /* Start with offset */
}

.card-line:active {
    cursor: grabbing;
}

.card-wrapper {
    position: relative;
    width: 400px;
    height: 280px;
    /* Est height of glass card */
    flex-shrink: 0;
}

.card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    /* rounded-2xl */
    overflow: hidden;
    backface-visibility: hidden;
}

.card-normal {
    z-index: 2;
    background: rgba(10, 10, 10, 0.9);
    /* Dynamic Clipping controlled by JS */
    /* Decryption Mode: Show Left (Scanned) */
    clip-path: inset(0 var(--clip-r, 0%) 0 var(--clip-l, 0%));
    transition: none !important;
    /* Override Tailwind transition-all */
}

.card-ascii {
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    /* Match Card Radius */

    /* Dynamic Clipping controlled by JS */
    /* Decryption Mode: Show Right (Incoming) */
    clip-path: inset(0 var(--clip-r, 0%) 0 var(--clip-l, 0%));
    transition: none !important;
}

.ascii-content {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 11px;
    /* 13.5px * 20 lines = 270px (280 - 10 padding) */
    line-height: 13.5px;
    /* More spacing for readability */
    opacity: 1.0;
    /* Full opacity */
    overflow: hidden;
    white-space: pre-wrap;
    /* Wrap text naturally */
    overflow-wrap: break-word;
    /* Wrap at words, break only if necessary */
    /* Keep formatting */
    /* 5px Padding as requested */
    padding: 5px;
    /* Minimal padding */
    width: 100%;
    height: 100%;
    text-align: left;
    /* Remove gradient mask to make it look full */
    /* -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%); */
    /* Glow Effect - Stronger/Mysterious */
    text-shadow: 0 0 5px currentColor, 0 0 10px currentColor;
}

canvas#particleCanvas,
canvas#scannerCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

canvas#scannerParticlesCanvas {
    z-index: 25;
    /* Above cards (z-20) */
    pointer-events: none;
    /* Allow clicking through to cards */
    mix-blend-mode: screen;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

canvas#particleCanvas {
    z-index: 1;
}

canvas#scannerCanvas {
    z-index: 20;
    /* Above cards (z-10) */
    mix-blend-mode: screen;
}

/* Remove old marquee animation */
.marquee-wrapper,
.marquee-content {
    display: none;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-card {
    flex: 0 0 400px;
    width: 400px;
}

@media (max-width: 768px) {
    .marquee-card {
        flex: 0 0 300px;
        width: 300px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
        /* Move by half the total width (original set) + half gap */
    }
}

/* Utility Classes from Tailwind equivalents */
.pt-26 {
    padding-top: 6.5rem;
}

.pt-28 {
    padding-top: 9rem;
}

.pb-14 {
    padding-bottom: 3.5rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-14 {
    margin-bottom: 3.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-12 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.overflow-hidden {
    overflow: hidden;
}

.min-h-78vh {
    min-height: 78vh;
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-black\/30 {
    --tw-gradient-from: rgba(0, 0, 0, 0.3);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-transparent {
    --tw-gradient-to: transparent;
}

/* Grid Utilities */
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-6 {
    gap: 1.5rem;
}

.space-y-10>*+* {
    margin-top: 2.5rem;
}

/* Responsive Media Queries */
@media (min-width: 768px) {

    .grid-cols-2,
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:order-1 {
        order: 1;
    }

    .md\:order-2 {
        order: 2;
    }

    .md\:hidden {
        display: none;
    }

    .md\:block {
        display: block;
    }
}

/* Opacity & Effects */
.opacity-60 {
    opacity: 0.6;
}

.grayscale {
    filter: grayscale(100%);
}

.hover\:grayscale-0:hover {
    filter: grayscale(0%);
}

.hover\:opacity-100:hover {
    opacity: 1;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Padding utilities */
.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .md\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}


/* Missing Utility Classes for Team Page */
.rounded-full {
    border-radius: 9999px;
}

.w-24 {
    width: 6rem;
}

.h-24 {
    height: 6rem;
}

.w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

.object-cover {
    object-fit: cover;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.group:hover .group-hover\:border-blue-500\/80 {
    border-color: rgba(59, 130, 246, 0.8);
}


/* Contact Form Dark Mode Filter */
iframe[src*="go.eygent.com"] {
    filter: invert(0.92) hue-rotate(180deg);
    border-radius: 12px;
}

/* Tech Spec Badge Utilities */
.bg-blue-500\/20 {
    background-color: rgba(59, 130, 246, 0.2);
}

.bg-purple-500\/20 {
    background-color: rgba(168, 85, 247, 0.2);
}

.text-blue-400 {
    color: #60a5fa;
}

.text-purple-400 {
    color: #c084fc;
}

.text-gray-200 {
    color: #e2e8f0;
}

.text-gray-400 {
    color: #94a3b8;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Semantic Grid for Solutions Page */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Added Utility Classes for Solutions Cards (Global) */
.flex-wrap {
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }

    .md\:text-left {
        text-align: left;
    }

    .md\:items-start {
        align-items: flex-start;
    }
}

.flex-col {
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

.shrink-0 {
    flex-shrink: 0;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.mt-auto {
    margin-top: auto;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-y-6 {
    row-gap: 1.5rem;
}

.gap-x-4 {
    column-gap: 1rem;
}

.col-span-1 {
    grid-column: span 1 / span 1;
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.block {
    display: block;
}

/* Custom Shadow for Icons (simulating arbitrary value) */
.shadow-\[0_0_15px_rgba\(59\,130\,246\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.shadow-\[0_0_15px_rgba\(168\,85\,247\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}

/* Missing Flex Utilities */
.flex-wrap {
    flex-wrap: wrap;
}

.gap-x-6 {
    column-gap: 1.5rem;
}

.gap-y-3 {
    row-gap: 0.75rem;
}

/* Cinematic Scroll Utilities */
.sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content-panel {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.h-screen {
    height: 100vh;
}

.min-h-screen {
    min-height: 100vh;
}

/* Utility Classes Added for Spacing Refinement */
.p-10 {
    padding: 2.5rem;
}

.p-12 {
    padding: 3rem;
}

.mt-40 {
    margin-top: 10rem;
}

.gap-x-8 {
    column-gap: 2rem;
}

.gap-y-8 {
    row-gap: 2rem;
}

.gap-y-10 {
    row-gap: 2.5rem;
}

.leading-tight {
    line-height: 1.25;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .md\:p-10 {
        padding: 2.5rem;
    }

    .md\:p-12 {
        padding: 3rem;
    }
}

/* Psychological Color Palette Utilities */

/* Rose (Product Design) */
.text-rose-400 {
    color: #fb7185;
}

.bg-rose-500\/10 {
    background-color: rgba(244, 63, 94, 0.1);
}

.border-rose-500\/20 {
    border-color: rgba(244, 63, 94, 0.2);
}

.shadow-\[0_0_15px_rgba\(244\,63\,94\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.15);
}

/* Cyan (Mobile Apps) */
.text-cyan-400 {
    color: #22d3ee;
}

.bg-cyan-500\/10 {
    background-color: rgba(6, 182, 212, 0.1);
}

.border-cyan-500\/20 {
    border-color: rgba(6, 182, 212, 0.2);
}

.shadow-\[0_0_15px_rgba\(6\,182\,212\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

/* Indigo (Backend Systems) */
.text-indigo-400 {
    color: #818cf8;
}

.bg-indigo-500\/10 {
    background-color: rgba(99, 102, 241, 0.1);
}

.border-indigo-500\/20 {
    border-color: rgba(99, 102, 241, 0.2);
}

.shadow-\[0_0_15px_rgba\(99\,102\,241\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
}

/* Sky (Cloud & DevOps) */
.text-sky-400 {
    color: #38bdf8;
}

.bg-sky-500\/10 {
    background-color: rgba(14, 165, 233, 0.1);
}

.border-sky-500\/20 {
    border-color: rgba(14, 165, 233, 0.2);
}

.shadow-\[0_0_15px_rgba\(14\,165\,233\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
}

/* Emerald (Security) */
.text-emerald-400 {
    color: #34d399;
}

.bg-emerald-500\/10 {
    background-color: rgba(16, 185, 129, 0.1);
}

.border-emerald-500\/20 {
    border-color: rgba(16, 185, 129, 0.2);
}

.shadow-\[0_0_15px_rgba\(16\,185\,129\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

/* Amber (QA & Test) */
.text-amber-400 {
    color: #fbbf24;
}

.bg-amber-500\/10 {
    background-color: rgba(245, 158, 11, 0.1);
}

.border-amber-500\/20 {
    border-color: rgba(245, 158, 11, 0.2);
}

.shadow-\[0_0_15px_rgba\(245\,158\,11\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

/* Fuchsia (AI & Data) */
.text-fuchsia-400 {
    color: #e879f9;
}

.bg-fuchsia-500\/10 {
    background-color: rgba(217, 70, 239, 0.1);
}

.border-fuchsia-500\/20 {
    border-color: rgba(217, 70, 239, 0.2);
}

.shadow-\[0_0_15px_rgba\(217\,70\,239\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.15);
}

/* Missing Blue & Purple variants (if not in existing) */
.bg-blue-500\/10 {
    background-color: rgba(59, 130, 246, 0.1);
}

.border-blue-500\/20 {
    border-color: rgba(59, 130, 246, 0.2);
}

.shadow-\[0_0_15px_rgba\(59\,130\,246\,0\.15\)\] {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

/* Infinity Slider / Marquee Styles */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
    /* Soft fade mask for left/right edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 3rem;
    /* Increased horizontal gap between items */
    width: max-content;
    animation: scroll 40s linear infinite;
    padding-left: 0;
    margin-bottom: 0.5rem;
    /* Vertical gap between rows */
    padding-top: 0.25rem;
    /* Prevent top cut-off */
    padding-bottom: 0.25rem;
    /* Prevent bottom cut-off */
}

/* Remove bottom margin from the last row */
.marquee-content:last-child {
    margin-bottom: 0;
}

/* Reverse scroll for the second row */
.marquee-content.reverse {
    animation-direction: reverse;
}

/* Pause on hover */
/* Pause on hover */
.marquee-container:hover .marquee-content,
.marquee-content:hover,
.industry-card-compact:hover {
    animation-play-state: paused !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Assumes content is duplicated for seamless loop */
    }
}

/* Compact Industry Card for Slider */
.industry-card-compact {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    align-items: center;
    /* Vertically center */
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(30, 41, 59, 0.4);
    /* Slightly more transparent */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    /* Pill shape for slimmer look */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;

    /* Glow effect handling */
    position: relative;
    overflow: hidden;
}

.industry-card-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 1px;
    background: linear-gradient(135deg,
            var(--glow-color, rgba(255, 255, 255, 0.1)),
            rgba(255, 255, 255, 0.05),
            var(--glow-color, rgba(255, 255, 255, 0.1)));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.industry-card-compact:hover {
    background: rgba(30, 41, 59, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--glow-color);
}

.industry-card-compact:hover::before {
    opacity: 0.8;
}

.industry-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Background and color set inline or via utility classes */
}

.industry-icon-box svg {
    width: 1.25rem;
    height: 1.25rem;
}

.industry-title {
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    /* Color set inline or via utility classes */
}

/* Blueprint Card Design System */
.blueprint-card {
    position: relative;
    background: rgba(15, 23, 42, 0.8);
    /* Dark slate base */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    /* Sharp technical finish */
    padding: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.blueprint-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.blueprint-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.project-id {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--accent-primary);
    /* Cyan */
    font-weight: 700;
    letter-spacing: 0.05em;
}

.project-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blueprint-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.blueprint-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.summary {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.spec-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-section.problem {
    border-left: 2px solid #f97316;
    /* Orange */
    padding-left: 1rem;
}

.spec-section.solution {
    border-left: 2px solid #38bdf8;
    /* Cyan */
    padding-left: 1rem;
}

.spec-section.outcome {
    border-left: 2px solid #10b981;
    /* Emerald */
    padding-left: 1rem;
}

.label {
    font-family: 'Fira Code', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.spec-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.blueprint-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
}

.tech-stack-slim {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    font-family: 'Fira Code', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Color Overrides per card type */
.card-proptech .project-id {
    color: #818cf8;
}

.card-fintech .project-id {
    color: #38bdf8;
}

.card-saas .project-id {
    color: #c084fc;
}

.card-logistics .project-id {
    color: #f87171;
}

.card-retail .project-id {
    color: #fb923c;
}

@media (min-width: 768px) {
    .spec-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        /* Larger gap on desktop */
    }

    .spec-section.outcome {
        grid-column: span 2;
        /* Full width outcome */
        margin-top: 0.5rem;
        padding-top: 1rem;
        border-top: 1px dashed rgba(255, 255, 255, 0.05);
        border-left: none;
        /* Remove side border for full width */
        padding-left: 0;
        display: flex;
        flex-direction: row;
        /* Horizontal alignment for outcome */
        align-items: baseline;
        gap: 1rem;
    }

    .spec-section.outcome .label {
        white-space: nowrap;
        color: #10b981;
        /* Emerald Outcome Label */
    }
}

/* Scan Line */
.scan-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    /* Controlled by JS */
    transition: opacity 0.1s;
}

/* Compact Blueprint Card for Sliders */
.blueprint-card.compact {
    min-height: 320px;
    /* Slightly Reduced height */
    background: rgba(15, 23, 42, 0.6);
    /* Semi-transparent for glass effect */
    backdrop-filter: blur(16px);
    /* Restore glassmorphism */
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(var(--glow-color-rgb, 255, 255, 255), 0.3);
    /* Persistent subtle glow */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blueprint-card.compact:hover {
    border-color: var(--glow-color);
    box-shadow:
        0 0 5px var(--glow-color),
        /* Sharp-ish outer border glow */
        0 0 25px rgba(var(--glow-color-rgb), 0.6),
        /* Spread outer glow */
        inset 0 0 20px rgba(var(--glow-color-rgb), 0.2);
    /* Inner border glow */
    transform: translateY(-4px);
}

.blueprint-card.compact .blueprint-header {
    padding: 0.75rem 1rem;
    /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blueprint-card.compact .blueprint-body {
    padding: 1rem;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align top */
    text-align: left;
    /* Override parent text-center */
    flex-grow: 1;
}

.blueprint-card.compact h3 {
    font-size: 1.6rem;
    /* Slightly smaller to fit grid */
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Top Section Grid: Title Left, Specs Right */
.top-section-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    /* Name larger than specs */
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.title-col {
    display: flex;
    align-items: center;
}

.stats-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Right align specs */
    text-align: right;
    justify-content: center;
    height: 100%;
}

.stats-col .stat-value {
    font-family: 'Fira Code', monospace;
    font-size: 1rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.stats-col .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.blueprint-card.compact .summary {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blueprint-card.compact .spec-section.outcome {
    margin-top: 0;
    /* Reset */
    border-top: none;
    /* Reset */
    padding-top: 0;
    border-left: 2px solid #10b981;
    /* Restore border */
    padding-left: 0.75rem;
}

.blueprint-card.compact .spec-section.problem {
    border-left: 2px solid #f97316;
    /* Restore border */
    padding-left: 0.75rem;
}

.blueprint-card.compact .spec-section.outcome .label {
    color: #10b981;
    font-size: 0.65rem;
}

.blueprint-card.compact .spec-section.outcome p {
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    line-height: 1.3;
}

/* Ensure ASCII card matches dimensions */
/* Ensure ASCII card matches dimensions and alignment */
.card-ascii {
    min-height: 320px;
    /* Match Blueprint Compact */
    background: #0f172a;
    /* Match Blueprint Base */
    border: 1px solid rgba(56, 189, 248, 0.2);
    /* Cyan Scan Border */
    display: flex;
    align-items: center;
    /* Vertical Center */
    justify-content: center;
    /* Horizontal Center */
}

/* Slider Specific Styles */
.tech-tag-mini {
    display: inline-block;
    padding: 1px 5px;
    /* Tighter padding */
    margin: 1px;
    font-size: 0.6rem;
    font-family: 'Fira Code', monospace;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
}

/* 2-Column Layout - Explicit Selector */
.spec-grid.vertical,
.item-grid-2col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-flow: row;
    gap: 1rem;
    margin-top: 0.5rem;
    text-align: left;
    width: 100%;
    /* Ensure full width */
    min-width: 0;
    /* Fix for grid blowouts */
}

.spec-grid.vertical .spec-section,
.item-grid-2col .spec-section {
    padding-left: 0.75rem;
    /* Standard indent */
    /* Border is handled by specific classes above */
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Ensure they sit in grid path */
    grid-column: auto !important;
    /* Prevent spanning */
}

.blueprint-card.compact .blueprint-footer {
    margin-top: auto;
    /* Pin to bottom */
    padding: 0.5rem 1rem;
    /* Compact footer */
    background: rgba(0, 0, 0, 0.3);
    /* Darker footer background */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lint fix: standard line-clamp */
.blueprint-card.compact .summary {
    line-clamp: 2;
}

/* -------------------------------------------------------------------------- */
/* CRITICAL UTILITY BACKFILL (Tailwind-like classes used in HTML) */
/* -------------------------------------------------------------------------- */

/* Layout & Spacing */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }
}

/* Max Widths */
.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

/* Padding (approximate Tailwind scale) */
.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.p-12 {
    padding: 3rem;
}

/* Margins */
.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-24 {
    margin-bottom: 6rem;
}

.mb-32 {
    margin-bottom: 8rem;
}

.mb-40 {
    margin-bottom: 10rem;
}

/* Gaps */
.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

/* Text Sizes */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

/* Grid (Basic) */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* ===== SCROLL REVEAL SYSTEM ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger children inside a reveal group */
[data-reveal-group]>* {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(3px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

[data-reveal-group].revealed>* {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Slide from left variant */
[data-reveal="left"] {
    transform: translateX(-40px) translateY(0);
}

[data-reveal="left"].revealed {
    transform: translateX(0) translateY(0);
}

/* Scale up variant */
[data-reveal="scale"] {
    transform: scale(0.92);
    filter: blur(6px);
}

[data-reveal="scale"].revealed {
    transform: scale(1);
    filter: blur(0);
}

/* ===== FLOATING AMBIENT ORBS ===== */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
}

.ambient-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: orb-drift-1 25s ease-in-out infinite;
}

.ambient-orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.14) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: orb-drift-2 30s ease-in-out infinite;
}

.ambient-orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation: orb-drift-3 20s ease-in-out infinite;
}

@keyframes orb-drift-1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(80px, 60px);
    }

    50% {
        transform: translate(40px, 120px);
    }

    75% {
        transform: translate(-30px, 50px);
    }
}

@keyframes orb-drift-2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-70px, -50px);
    }

    50% {
        transform: translate(-30px, -100px);
    }

    75% {
        transform: translate(40px, -40px);
    }
}

@keyframes orb-drift-3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(60px, -40px);
    }

    66% {
        transform: translate(-40px, 30px);
    }
}

/* ===== BUTTON SHIMMER ===== */
@keyframes btn-shimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

.btn-primary .shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    transform: translateX(-100%) skewX(-15deg);
    z-index: 2;
    pointer-events: none;
}

.btn-primary:hover .shimmer {
    animation: btn-shimmer 0.6s ease-out;
}

/* ===== CARD 3D TILT ===== */
.tilt-card {
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

.tilt-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px var(--glow-color, rgba(99, 102, 241, 0.15));
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    [data-reveal],
    [data-reveal-group]>* {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .ambient-orb {
        display: none;
    }

    .btn-primary .shimmer {
        display: none;
    }

    .tilt-card {
        transition: none;
    }

    .cursor-spotlight {
        display: none;
    }
}

/* ===== CURSOR SPOTLIGHT ===== */
.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
}