
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #b3a7cb;
    --primary-grad: linear-gradient(135deg, #7a1264 0%, #1a0b36 100%);
    --accent-cyan: #00f2fe;
    --accent-magenta: #e0115f;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==========================================================================
   2. FINAL COMPACT FLOATING CAPSULE NAVIGATION HEADER
   ========================================================================== */
header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    
    /* THE THINNER FIX: Dropped padding from 0.5rem to 0.4rem top/bottom for a sleek profile */
    padding: 0.4rem 1.2rem 0.4rem 2rem !important; 
    
    /* MODERN COMPUZEE THEME COLOR: Deep charcoal glass with an electric glow outline */
    background: rgba(10, 11, 18, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 140, 255, 0.2) !important; /* Premium neon indigo tint edge */
    border-radius: 50px !important; /* Continuous smooth capsule curvature */
    
    /* FLOATING COMPRESSION */
    position: fixed !important;
    width: 92% !important;
    max-width: 1000px !important;
    top: 20px !important; 
    left: 50% !important;
    transform: translateX(-50%) !important; 
    z-index: 1000 !important; 
    
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 140, 255, 0.05) !important;
    box-sizing: border-box !important;
}

.site-logo {
    /* THE ABSOLUTE OVERRIDE: Scales up asset artwork coordinates directly */
    height: 55px !important; 
    width: auto !important; 
    object-fit: contain !important;
    display: block !important;
    
    /* THE VISIBILITY ENGAGEMENT FIX: Multiplies size profiles cleanly on screen */

    /* Layout structural alignment shifts */
    margin-left: 15px !important; /* Comfortable margin padding buffer to keep the enlarged logo off the capsule curve edge */
    filter: brightness(1.3) contrast(1.1) !important; /* Gives text graphics an extra light boost */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.site-logo:hover {
    transform: scale(1.05) !important;
}
@media (max-width: 980px) {

    .site-logo {
        height: 45px !important;
        margin-left: 0 !important;
    }

}

nav ul {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    gap: 2.2rem !important; /* Clean corporate breathing space */
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

nav ul li {
    white-space: nowrap !important;
}

nav a {
    color: rgba(255, 255, 255, 0.8) !important; 
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    padding: 4px 0 !important;
    letter-spacing: 0.3px !important;
}

/* PREMIUM UPGRADE: Smooth sliding dual-color gradient line under options */
nav a::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #008cff, #e100ff) !important; 
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

nav a:hover::after, nav a.active::after {
    width: 100% !important;
}

nav a:hover, nav a.active {
    color: #008cff !important; /* Vibrant neon blue focus state */
}

/* RE-ENGINEERED: Premium linear gradient Register button */
.btn-nav {
    background: linear-gradient(135deg, #008cff, #e100ff) !important; 
    color: #ffffff !important; /* Clean crisp white text */
    padding: 0.5rem 1.5rem !important; /* Compressed button padding to respect thinner header */
    border-radius: 30px !important; 
    font-weight: 600 !important; 
    font-size: 13.5px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 140, 255, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-nav::after {
    display: none !important; /* Disables underline animation on button */
}

.btn-nav:hover {
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(225, 0, 255, 0.5) !important;
    color: #ffffff !important;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media (max-width: 980px) {

        header{
        width:auto !important;
        max-width:none !important;

        top:20px !important;
        right:20px !important;
        left:auto !important;

        transform:none !important;

        padding:0 !important;

        background:transparent !important;
        border:none !important;
        box-shadow:none !important;
        backdrop-filter:none !important;
    }

    .site-logo {
        display: none !important;
    }

    .mobile-menu-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;

        width:58px;
        height:58px;

        border-radius:50%;

        background:rgba(10,11,18,.9);

        border:1px solid rgba(0,140,255,.3);

        color:white;

         font-size:32px;
    font-weight:300;
    line-height:1;

        box-shadow:
            0 10px 30px rgba(0,0,0,.4);

        cursor:pointer;
    }

 nav{
        display:none;
    }

    nav.active{
        display:flex !important;

        position:fixed;

        inset:0;

        background:#030712;

        z-index:9999;

        justify-content:center;
        align-items:center;
    }

    nav.active ul{
        display:flex !important;
        flex-direction:column !important;

        gap:2rem !important;

        text-align:center;
    }

    nav.active a{
        font-size:1.4rem !important;
    }

}
.close-menu-btn{
    display:none;
}

@media(max-width:980px){

    nav.active .close-menu-btn{
        display:block;
        position:absolute;
        top:25px;
        right:25px;
        background:none;
        border:none;
        color:white;
        font-size:40px;
        z-index:10000;
    }

}

/* ==========================================================================
   3. CONTENT LAYOUT ADJUSTMENT BUFFER & HERO WORKSPACE
   ========================================================================== */
.hero {
    margin-top: 130px !important; /* Pushes content down safely below thinner capsule menu */
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background: radial-gradient(circle at 80% 20%, rgba(122, 18, 100, 0.25) 0%, transparent 50%);
}

.hero-content {
    max-width: 550px;
}

.tagline {
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    text-decoration: none;
    background-color: black;
    color: #f6f6f6;
    border: none;
    padding: 14px 70px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    transition: 0.5s;
    margin-top: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 140, 255, 0.5);
    position: relative;
    margin-left: -5px;
}

.cta-btn::after {
    content: '';
    position: absolute;
    height: 102%;
    width: 103%;
    border-radius: 1000px;
    background-image: linear-gradient(to bottom right, #008cff, #e100ff);
    z-index: -1;
}

.cta-btn:hover {
    background-image: linear-gradient(to bottom right, #008cff, #e100ff);
    color: #000;
    box-shadow: 0 0 20px #d0c9d2;
}

:root {
    --bg-global: #030712;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --bg-card: rgba(255, 255, 255, 0.02);
    --border-card: rgba(255, 255, 255, 0.05);
    --header-blur-bg: rgba(10, 11, 18, 0.75);
    
    /* Pre-existing brand accent links */
    --accent-cyan: #00f2fe;
    --accent-magenta: #ff007f;
}

/* 3. Global Structural Mapping Binding (Ensures your page respects theme switches) */
body {
    background-color: var(--bg-global) !important;
    color: var(--text-main) !important;
    transition: background-color 0.4s ease, color 0.4s ease !important;
}

/* ==========================================================================
   PRODUCTS & SERVICES - 4 IN A ROW RESPONSIVE GRID SYSTEM
   ========================================================================== */

/* ==========================================================================
   MAIN WEBSITE HEADLINE & HERO SECTION STYLING (CENTER ALIGNED)
   ========================================================================== */
.features-main-hero-section {
    width: 100%;
    position: relative;
    padding: 130px 5% 40px 5% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: radial-gradient(circle at 50% 20%, rgba(0, 140, 255, 0.12) 0%, rgba(225, 0, 255, 0.05) 45%, transparent 70%);
    box-sizing: border-box !important;
    overflow: hidden;
}

.features-hero-container {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(0, 140, 255, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: #00f2fe;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.18);
}

.hero-badge-pill .pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00f2fe;
    box-shadow: 0 0 10px #00f2fe;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.features-main-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    letter-spacing: -1px !important;
    color: #ffffff !important;
    margin: 0 auto 1.25rem auto !important;
    max-width: 900px;
    text-align: center !important;
}

.gradient-accent-text {
    background: linear-gradient(135deg, #00f2fe 0%, #008cff 50%, #e100ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.features-subheadline {
    font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
    color: rgba(255, 255, 255, 0.72) !important;
    line-height: 1.65 !important;
    max-width: 780px !important;
    margin: 0 auto 2rem auto !important;
    text-align: center !important;
}

.hero-cta-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    margin: 0 auto !important;
}

.hero-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 13px 30px !important;
    border-radius: 30px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    cursor: pointer !important;
    line-height: 1 !important;
}

.hero-cta-btn.cta-primary {
    background: linear-gradient(135deg, #008cff, #e100ff) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 140, 255, 0.45) !important;
    border: none !important;
}

.hero-cta-btn.cta-primary:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 12px 35px rgba(225, 0, 255, 0.6) !important;
    color: #ffffff !important;
}

.hero-cta-btn.cta-secondary {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.hero-cta-btn.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #00f2fe !important;
    color: #00f2fe !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.25) !important;
}

/* ==========================================================================
   3D PLEXUS GLOBE HERO SECTION (RESTORED EXACTLY AS BEFORE)
   ========================================================================== */
.plexus-hero-section {
    width: 100% !important;
    min-height: 45vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 30px 4% 60px 4% !important;
    position: relative !important;
    z-index: 5 !important;
    background: transparent !important;
}

.plexus-inline-sentence {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px 30px !important;
    max-width: 1350px !important;
    width: 100% !important;
    text-align: center !important;
}

.plexus-txt {
    font-size: 2.1rem !important;
    font-weight: 700 !important;
    color: var(--text-main) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    transition: color 0.4s ease !important;
}

.plexus-globe-gap-viewport {
    position: relative !important;
    width: 320px !important; 
    height: 100px !important; 
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#plexusGlobeCanvas {
    position: absolute !important;
    width: 480px !important; 
    height: 480px !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: transparent !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.products-services-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 4% 100px 4%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.products-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.products-section-kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00f2fe;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.products-section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.products-section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.products-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 26px;
    width: 100%;
    align-items: stretch;
}

/* Compartment Card Container */
.compartment-card {
    width: 100% !important;
    min-height: 480px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease !important;
}

.compartment-card:hover {
    transform: translateY(-8px) scale(1.015) !important;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 242, 254, 0.2) !important;
    border-color: rgba(0, 242, 254, 0.45) !important;
    z-index: 10;
}

.compartment-card.is-expanded-state {
    border-color: rgba(0, 242, 254, 0.5) !important;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 242, 254, 0.25) !important;
}

/* Card Branding Color Palettes profiles (13 Cards) */
.card-1 { background-color: #0b1329; background-image: linear-gradient(180deg, rgba(11, 19, 41, 0.8), #030712); border-color: rgba(0, 140, 255, 0.25); }
.card-2 { background-color: #0c1a2e; background-image: linear-gradient(180deg, rgba(12, 26, 46, 0.8), #030712); border-color: rgba(0, 242, 254, 0.25); } 
.card-3 { background-color: #1a0f24; background-image: linear-gradient(180deg, rgba(26, 15, 36, 0.8), #030712); border-color: rgba(225, 0, 255, 0.25); } 
.card-4 { background-color: #0a1f1b; background-image: linear-gradient(180deg, rgba(10, 31, 27, 0.8), #030712); border-color: rgba(16, 185, 129, 0.25); } 
.card-5 { background-color: #171126; background-image: linear-gradient(180deg, rgba(23, 17, 38, 0.8), #030712); border-color: rgba(168, 85, 247, 0.25); }
.card-6 { background-color: #0a1728; background-image: linear-gradient(180deg, rgba(10, 23, 40, 0.8), #030712); border-color: rgba(56, 189, 248, 0.25); }
.card-7 { background-color: #1c0e24; background-image: linear-gradient(180deg, rgba(28, 14, 36, 0.8), #030712); border-color: rgba(236, 72, 153, 0.25); }
.card-8 { background-color: #061d28; background-image: linear-gradient(180deg, rgba(6, 29, 40, 0.8), #030712); border-color: rgba(6, 182, 212, 0.25); }
.card-9 { background-color: #0a2118; background-image: linear-gradient(180deg, rgba(10, 33, 24, 0.8), #030712); border-color: rgba(52, 211, 153, 0.25); }
.card-10 { background-color: #21160a; background-image: linear-gradient(180deg, rgba(33, 22, 10, 0.8), #030712); border-color: rgba(245, 158, 11, 0.25); }
.card-11 { background-color: #111827; background-image: linear-gradient(180deg, rgba(17, 24, 39, 0.8), #030712); border-color: rgba(148, 163, 184, 0.25); }
.card-12 { background-color: #081c12; background-image: linear-gradient(180deg, rgba(8, 28, 18, 0.8), #030712); border-color: rgba(34, 197, 94, 0.25); }
.card-13 { background-color: #1d092b; background-image: linear-gradient(180deg, rgba(29, 9, 43, 0.8), #030712); border-color: rgba(217, 70, 239, 0.25); }

.card-inner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(3, 7, 18, 0.95) 90%);
    z-index: 1;
    pointer-events: none;
}

.card-content-box {
    position: relative;
    padding: 2.2rem 1.6rem 1.8rem 1.6rem !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px;
    justify-content: flex-end;
    z-index: 2;
    box-sizing: border-box;
}

.comp-num {
    font-size: 2.4rem;
    font-weight: 800;
    opacity: 0.1;
    color: #ffffff;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    line-height: 1;
}

.compartment-card h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #ffffff;
    margin: 0 0 0.5rem 0 !important;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.card-tagline {
    font-size: 0.86rem !important;
    font-weight: 700 !important;
    color: #00f2fe !important;
    line-height: 1.35 !important;
    margin: 0 0 0.5rem 0 !important;
}

.card-desc {
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.45 !important;
    margin: 0 0 0.8rem 0 !important;
}

.card-content-spacer {
    flex-grow: 1;
}

.card-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #000000;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    margin-bottom: 0.8rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-action-link:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.55);
}

/* Expandable Drawer in Grid Card */
.comp-extended-drawer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, margin 0.35s ease;
}

.compartment-card.is-expanded-state .comp-extended-drawer {
    max-height: 480px;
    opacity: 1;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

.checklist-mode {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.check-list-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.35;
}

.bullet-check-icon {
    color: #00f2fe;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.comp-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.comp-expand-btn:hover {
    background: rgba(0, 140, 255, 0.15);
    border-color: rgba(0, 242, 254, 0.4);
    color: #00f2fe;
}

.comp-expand-btn .arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.compartment-card.is-expanded-state .comp-expand-btn .arrow-icon {
    transform: rotate(180deg);
}

/* Responsive 4-in-a-row Breakpoints */
@media (max-width: 1300px) {
    .products-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

@media (max-width: 950px) {
    .products-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .products-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.open-source-promotion-section {
    width: 100% !important;
    padding: 100px 6% !important;
    position: relative !important;
    z-index: 5 !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* 2. THE CHOSEN HEADING BRUSH HIGHLIGHT LAYERS */
#openSourceSection .os-main-heading {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto 3.5rem auto !important;
    letter-spacing: -1px !important;
}

#openSourceSection .brush-highlight-container {
    position: relative !important;
    display: inline-block !important;
    z-index: 1 !important;
    padding: 2px 14px !important;
}

/* THE REAL BRUSH STROKE: Recreated perfectly matching your image artwork specs */
#openSourceSection .brush-highlight-container::before {
    content: '' !important;
    position: absolute !important;
    top: 5% !important;
    bottom: 2% !important;
    left: 0 !important;
    width: 0% !important; /* Flat 0 until scroll triggers class */
    
    background-color: #ffea00 !important; /* Authentic high-contrast highlighter yellow */
    z-index: -1 !important; /* Drops underneath text string row lines */
    
    /* Advanced polygonal masking geometry replicates a real jagged paint stroke edge */
    clip-path: polygon(
        0% 18%, 12% 4%, 38% 14%, 62% 3%, 88% 11%, 100% 2%, 
        97% 48%, 100% 82%, 84% 96%, 52% 86%, 22% 98%, 0% 88%,
        3% 52%
    ) !important;
    -webkit-clip-path: polygon(
        0% 18%, 12% 4%, 38% 14%, 62% 3%, 88% 11%, 100% 2%, 
        97% 48%, 100% 82%, 84% 96%, 52% 86%, 22% 98%, 0% 88%,
        3% 52%
    ) !important;
    
    /* High-end ink rolling animation deceleration speed curve */
    transition: width 0.8s cubic-bezier(0.64, 0, 0.41, 1) !important;
}

#openSourceSection .brush-text-node {
    color: #ffffff !important;
    font-weight: 800 !important;
    transition: color 0.3s ease !important;
}

/* --- ACTIVE SCROLL TRIGGER INTERACTION STATES --- */
#openSourceSection.active-highlight-now .brush-text-node {
    color: #030712 !important; /* Flips the word into solid black instantly as yellow rolls underneath */
}

#openSourceSection.active-highlight-now .brush-highlight-container::before {
    width: 100% !important; /* Laser stretches the paint fill edge-to-edge smoothly */
}

/* 3. CORE GLASS DASHBOARD HOUSING WRAPPER */
#openSourceSection .open-source-dashboard-box {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 28px !important;
    padding: 3.5rem !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
    
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 4.5rem !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

/* LEFT COLUMN STRUCTURE */
#openSourceSection .dashboard-metrics-block {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
}

#openSourceSection .os-intro-subtitle {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    color: #9ca3af !important;
    margin-bottom: 0.5rem !important;
}

#openSourceSection .forrester-stat-row {
    background: rgba(3, 7, 18, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    border-radius: 16px !important;
    padding: 1.2rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    box-sizing: border-box !important;
    
    opacity: 0 !important;
    transform: translateX(-20px) !important;
}

#openSourceSection.active-highlight-now .forrester-stat-row {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease !important;
}

/* Staggers statistical text entrances sequentially */
#openSourceSection.active-highlight-now .forrester-stat-row:nth-child(2) { transition-delay: 0.15s !important; }
#openSourceSection.active-highlight-now .forrester-stat-row:nth-child(3) { transition-delay: 0.3s !important; }
#openSourceSection.active-highlight-now .forrester-stat-row:nth-child(4) { transition-delay: 0.45s !important; }

#openSourceSection .stat-glow-percentage {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #00f2fe !important; /* Electric Cyan variables track */
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.3) !important;
    min-width: 80px !important;
    line-height: 1 !important;
}

#openSourceSection .stat-label-copy {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    color: #f3f4f6 !important;
    margin: 0 !important;
}

/* RIGHT COLUMN GRID LAYER TRACK */
#openSourceSection .dashboard-solutions-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* Symmetric 2x4 card list blocks layout */
    gap: 1.25rem !important;
}

#openSourceSection .solution-grid-item {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    border-radius: 14px !important;
    padding: 1.1rem 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    
    opacity: 0 !important;
    transform: scale(0.95) !important;
}

#openSourceSection.active-highlight-now .solution-grid-item {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s ease !important;
}

/* Solutions entry stagger delays script logic indices */
#openSourceSection.active-highlight-now .solution-grid-item:nth-child(1) { transition-delay: 0.2s !important; }
#openSourceSection.active-highlight-now .solution-grid-item:nth-child(2) { transition-delay: 0.25s !important; }
#openSourceSection.active-highlight-now .solution-grid-item:nth-child(3) { transition-delay: 0.3s !important; }
#openSourceSection.active-highlight-now .solution-grid-item:nth-child(4) { transition-delay: 0.35s !important; }
#openSourceSection.active-highlight-now .solution-grid-item:nth-child(5) { transition-delay: 0.4s !important; }
#openSourceSection.active-highlight-now .solution-grid-item:nth-child(6) { transition-delay: 0.45s !important; }
#openSourceSection.active-highlight-now .solution-grid-item:nth-child(7) { transition-delay: 0.5s !important; }
#openSourceSection.active-highlight-now .solution-grid-item:nth-child(8) { transition-delay: 0.55s !important; }

#openSourceSection .green-verification-tick {
    color: #10b981 !important; /* Premium Emerald Green checks */
    font-weight: 900 !important;
    font-size: 1.1rem !important;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3) !important;
    flex-shrink: 0 !important;
}

#openSourceSection .solution-title-label {
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #e5e7eb !important;
    letter-spacing: 0.2px !important;
}

#openSourceSection .solution-grid-item:hover {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(0, 242, 254, 0.2) !important;
    transform: translateY(-3px) scale(1.02) !important;
}

/* Responsive scale safeguard rules for tablets/phones viewports */
@media (max-width: 968px) {
    #openSourceSection .open-source-dashboard-box {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        padding: 2.5rem 2rem !important;
    }
    #openSourceSection .os-main-heading { font-size: 2.1rem !important; }
}
@media (max-width: 980px) {
    #openSourceSection .dashboard-solutions-grid {
        grid-template-columns: 1fr !important; /* Forces 1-column checklist stack on handheld viewports */
    }
}
/* ==========================================================================
   HIGH-TECH INTEGRATED KINETIC ROADMAP DESIGN SYSTEM
   ========================================================================== */
.roadmap-corridor-section {
    width: 100% !important;
    padding: 100px 6% !important;
    position: relative !important;
    z-index: 2 !important;
    box-sizing: border-box;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 5rem;
}

.roadmap-header h2 {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 0.5rem !important;
}

.roadmap-subtitle {
    color: var(--accent-cyan);
    font-size: 1rem !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* THE TIMELINE VERTICAL PATH CORRIDOR RUNWAY */
.roadmap-timeline-runway {
    position: relative !important;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0 !important;
}

/* THE BASELINE GLOWING STATIC CENTER LINE TRACK */
.roadmap-timeline-runway::before {
    content: '' !important;
    position: absolute !important;
    width: 4px;
    background: rgba(255, 255, 255, 0.05); /* Soft background track */
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    z-index: 1;
}

/* THE ACTIVE DYNAMIC LASER PATH: Grows longer down the screen on scroll */
.kinetic-data-stream {
    position: absolute !important;
    width: 4px;
    background: linear-gradient(to bottom, #008cff, #00f2fe, #e100ff);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    z-index: 2;
    height: 0%; /* Driven dynamically via JavaScript scroll observer */
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
    will-change: height;
}

/* INDIVIDUAL TIMELINE NODE ROW STRUCTURE */
.timeline-corridor-node {
    position: relative !important;
    width: 50%; /* Splitting row pairs side-by-side symmetrically */
    margin-bottom: 3.5rem;
    box-sizing: border-box;
    display: flex;
    z-index: 5;
    
    /* Starting positions hidden before active scroll reveal triggers activate */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}

/* Left Node Card Placements alignment */
.node-left {
    left: 0;
    justify-content: flex-end;
    padding-right: 45px !important;
}

/* Right Node Card Placements alignment */
.node-right {
    left: 50%;
    justify-content: flex-start;
    padding-left: 45px !important;
}

/* THE CENTER AXIS YEAR HOUSING CAPSULE */
.node-marker-hub {
    position: absolute !important;
    top: 15px;
    z-index: 10;
}
.node-left .node-marker-hub { right: -28px; } /* Positions capsule right over the line */
.node-right .node-marker-hub { left: -28px; }

.node-year-badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
}

/* Specific Corporate Palette Color Mapping (Matches your image values exactly) */
.yr-2018 { background: #e65100; }
.yr-pink { background: #e91e63; }
.yr-purple { background: #673ab7; }
.yr-blue { background: #03a9f4; }
.yr-cyan { background: #009688; }
.yr-green { background: #4caf50; }
.yr-yellow { background: #ffaa00; }
.yr-darkblue { background: #0d47a1; }

/* THE GLASS CONTENT DISPLAY CARD MODULE */
.node-glass-content-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1.75rem !important;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.node-glass-content-card:hover {
    border-color: rgba(0, 242, 254, 0.25);
    transform: translateY(-3px);
}

/* Mini Tag Badges over titles */
.node-card-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Mapped badge sub-colors tint arrays */
.tag-orange { background: rgba(230, 81, 0, 0.15); color: #ff9800; }
.tag-pink { background: rgba(233, 30, 99, 0.15); color: #ff4081; }
.tag-purple { background: rgba(103, 58, 183, 0.15); color: #b388ff; }
.tag-blue { background: rgba(3, 169, 244, 0.15); color: #00e5ff; }
.tag-cyan { background: rgba(0, 150, 136, 0.15); color: #1de9b6; }
.tag-green { background: rgba(76, 175, 80, 0.15); color: #69f0ae; }
.tag-yellow { background: rgba(255, 170, 0, 0.15); color: #ffd740; }
.tag-darkblue { background: rgba(13, 71, 161, 0.2); color: #2979ff; }

.node-glass-content-card h3 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #ffffff;
    margin-bottom: 0.4rem !important;
    letter-spacing: -0.3px;
}

.node-glass-content-card p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    color: var(--text-muted);
    margin: 0 !important;
}

/* THE ACTIVE REVEAL CLASS: Fired sequentially on scroll arrival via JavaScript */
.timeline-corridor-node.revealed-node {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Fluid Responsive Breakpoint Safeguards for Small Mobile Screens */
@media (max-width: 980px) {
    .roadmap-timeline-runway::before, .kinetic-data-stream { left: 30px; transform: none; }
    .timeline-corridor-node { width: 100%; padding-left: 70px !important; padding-right: 0 !important; }
    .node-left, .node-right { left: 0; justify-content: flex-start; }
    .node-left .node-marker-hub, .node-right .node-marker-hub { left: 2px; right: auto; }
    .node-glass-content-card { max-width: 100%; }
    .roadmap-header h2 { font-size: 2.1rem !important; }
}

/* Compuzee Logo Polish */
.site-logo, .brand-logo img, .loader-logo, .hero-logo {
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}
