/* ==========================================================================
   CSS VARIABLE ARCHITECTURE: PROFESSIONAL WHITE & DARK BLUE SCHEMA
   ========================================================================== */
:root {
    --dark-blue-core: #0B2545;
    --dark-blue-deep: #134074;
    --royal-blue: #1D4ED8;
    --light-bg-base: #F8FAFC;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --purple-brand: #6B21A8;
}

/* Global Reset overrides within context rules */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg-base);
    -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.font-xxs { font-size: 0.65rem; }
.font-xs { font-size: 0.75rem; }
.font-sm { font-size: 0.88rem; }
.font-md { font-size: 1rem; }
.text-dark-blue { color: var(--dark-blue-core) !important; }
.text-royal-blue { color: var(--royal-blue) !important; }
.text-warning-dark { color: #B45309; }
.text-info-dark { color: #0369A1; }
.bg-dark-blue { background-color: var(--dark-blue-core) !important; }
.bg-purple { background-color: var(--purple-brand) !important; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }

/* Custom Scrollbar configuration for desktop horizontal scroll boxes */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* ==========================================================================
   SECTION COMPONENTS
   ========================================================================== */
.htt-master-architecture-section {
    position: relative;
    background-color: #ffffff;
}

/* Top Meta Bar Styling */
.badge-enterprise-blue {
    background-color: var(--dark-blue-core);
    color: #ffffff;
    font-weight: 800;
    padding: 6px 12px;
    letter-spacing: 0.05em;
}

/* Active Live Pulse Animation */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    border-radius: 50%;
    display: inline-block;
    animation: livePulseRule 2s infinite ease-in-out;
}

@keyframes livePulseRule {
    0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.animate-pulse-slow {
    animation: livePulseRule 4s infinite ease-in-out;
}

/* Four Pillar item cards */
.pillar-item {
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.pillar-item:hover {
    transform: translateY(-2px);
    border-color: var(--dark-blue-deep) !important;
}
.pillar-item .icon-circle {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* ==========================================================================
   CENTRAL ARCHITECTURE MASTER WEB DIAGRAM (EXECUTIVE WHITE & BLUE GRAPHIC)
   ========================================================================== */
.architecture-diagram-card {
    border: 1px solid rgba(255,255,255,0.1);
}
.diagram-overlay-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.master-hub-ring {
    position: relative;
    width: 280px;
    height: 280px;
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 50%;
}
.central-branding-plate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    border: 4px solid var(--dark-blue-deep);
}

/* Architectural Sub-nodes positioning configuration */
.arch-node {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 2px solid var(--royal-blue);
    color: var(--dark-blue-core);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.arch-node .node-lbl {
    position: absolute;
    bottom: -18px;
    font-size: 0.58rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
}
.arch-node:hover {
    background: var(--royal-blue);
    color: #ffffff;
    transform: scale(1.15);
}

/* Core Polar Positioning of Nodes */
.node-1 { top: -22px; left: 118px; }
.node-2 { top: 50px; right: -15px; }
.node-3 { bottom: 50px; right: -15px; }
.node-4 { bottom: -22px; left: 118px; }
.node-5 { bottom: 50px; left: -15px; }
.node-6 { top: 50px; left: -15px; }

/* ==========================================================================
   LIVE FEED AND TERMINAL PANEL LAYOUT
   ========================================================================== */
.live-activity-feed-item {
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
    transition: background-color 0.2s ease;
}
.live-activity-feed-item:hover {
    background-color: var(--light-bg-base);
}
.bg-white-10 { background-color: rgba(255,255,255,0.08); }
.border-white-20 { border-color: rgba(255,255,255,0.15) !important; }

/* Action Links Configuration Matrix */
.action-btn-link {
    transition: filter 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.action-btn-link:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Horizontal Responsive Scroll Container */
.outcomes-scroll-deck {
    -webkit-overflow-scrolling: touch;
}
.min-w-200 {
    min-width: 180px;
}

/* Video Play trigger configuration styling */
.cinematic-preview-card {
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.cinematic-preview-card:hover {
    background-color: var(--dark-blue-deep) !important;
}
.video-play-btn-circle {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Ticker Marquee Layout Lines styling configuration */
.partners-logo-grid {
    display: flex;
    gap: 1.5rem;
}
.partner-logo-item {
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* Form Override Overhaul rules */
.form-control:focus, .form-select:focus {
    border-color: var(--dark-blue-core);
    box-shadow: 0 0 0 0.25rem rgba(11, 37, 69, 0.15);
}

.btn-dark-blue {
    background-color: var(--dark-blue-core);
    color: #ffffff;
    border: none;
    transition: background-color 0.2s ease;
}
.btn-dark-blue:hover {
    background-color: var(--dark-blue-deep);
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE LAYOUT SYSTEM BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .master-hub-ring {
        margin: 30px auto;
    }
}

@media (max-width: 992px) {
    .capability-marquee-row .cap-divider {
        display: none;
    }
    .capability-marquee-row {
        text-align: center;
    }
    .cap-pill {
        background: rgba(255,255,255,0.05);
        padding: 4px 10px;
        border-radius: 4px;
    }
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
    .master-hub-ring {
        width: 240px;
        height: 240px;
    }
    .central-branding-plate {
        width: 90px;
        height: 90px;
    }
    .arch-node {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    .node-1 { top: -19px; left: 101px; }
    .node-2 { top: 40px; right: -12px; }
    .node-3 { bottom: 40px; right: -12px; }
    .node-4 { bottom: -19px; left: 101px; }
    .node-5 { bottom: 40px; left: -12px; }
    .node-6 { top: 40px; left: -12px; }
}












/* =========================================================================
   SECTION 02 SYSTEM ARCHITECTURE EXTENSION STYLING SCHEMA
   ========================================================================== */

/* Utility Typography and Structural Resets */
.bg-dark-blue { background-color: #0B2545 !important; }
.text-dark-blue { color: #0B2545 !important; }
.text-royal-blue { color: #1D4ED8 !important; }
.text-warning-dark { color: #C2410C !important; }
.text-primary-light { color: #60A5FA !important; }
.bg-white-5 { background-color: rgba(255, 255, 255, 0.04) !important; }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1) !important; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }
.border-white-20 { border-color: rgba(255, 255, 255, 0.2) !important; }
.font-serif { font-family: Georgia, Cambria, "Times New Roman", Times, serif; }
.z-index-2 { z-index: 2; }
.max-w-800 { max-width: 800px; }
.h-180 { height: 180px; }
.h-40 { height: 40px; }
.w-40 { width: 40px; }
.italic { font-style: italic; }
.leading-none { Georgia: 1; }
.leading-sm { line-height: 1.3; }

/* Diagram Background Grid Design Pattern */
.diagram-overlay-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    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: 20px 20px;
    z-index: 1;
    pointer-events: none;
}

/* Callout Box Design Accentuation */
.callout-isolation-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.callout-isolation-card:hover {
    background-color: #f1f5f9 !important;
    transform: translateX(4px);
}

/* High-Tech Orbital Hub Wheel Styling Blueprint */
.ecosystem-wheel-outer {
    width: 420px;
    height: 420px;
    border: 2px dashed rgba(11, 37, 69, 0.15);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateOrbitWheel 50s linear infinite;
}
.ecosystem-wheel-outer:hover {
    animation-play-state: paused;
}
.wheel-center-plate {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, #134074 0%, #0B2545 100%);
    border: 4px solid #fff;
    display: flex;
    flex-column-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    z-index: 5;
    animation: antiRotateNode 50s linear infinite reverse;
}
.orbit-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid #0B2545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.orbit-node .node-icon {
    font-size: 1.2rem;
    color: #1D4ED8;
    animation: antiRotateNode 50s linear infinite reverse;
}
.orbit-node .node-txt {
    position: absolute;
    width: 140px;
    font-size: 10px;
    font-weight: 700;
    color: #0B2545;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    pointer-events: none;
    animation: antiRotateNode 50s linear infinite reverse;
}

/* Positioning Engine for Orbits Mapping Matrix */
.on-1 { top: -35px; left: calc(50% - 35px); } .on-1 .node-txt { top: -20px; text-align: center; left: calc(50% - 70px); }
.on-2 { top: 75px; right: -35px; } .on-2 .node-txt { left: 80px; text-align: left; top: calc(50% - 7px); }
.on-3 { bottom: 75px; right: -35px; } .on-3 .node-txt { left: 80px; text-align: left; top: calc(50% - 7px); }
.on-4 { bottom: -35px; left: calc(50% - 35px); } .on-4 .node-txt { bottom: -20px; text-align: center; left: calc(50% - 70px); }
.on-5 { bottom: 75px; left: -35px; } .on-5 .node-txt { right: 80px; text-align: right; top: calc(50% - 7px); }
.on-6 { top: 75px; left: -35px; } .on-6 .node-txt { right: 80px; text-align: right; top: calc(50% - 7px); }

.orbit-node:hover {
    transform: scale(1.15);
    background-color: #0B2545;
    border-color: #1D4ED8;
}
.orbit-node:hover .node-icon {
    color: #fff;
}

/* Media Gallery Overlay & Zoom Engine */
.gallery-media-card {
    background-size: cover;
    background-position: center;
    cursor: pointer;
    min-height: 180px;
}
.gallery-media-card::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(transparent 30%, rgba(11, 37, 69, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}
.gallery-media-card .media-placeholder {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}
.gallery-media-card:hover .media-placeholder {
    transform: translateY(-4px);
}
.gallery-media-card:hover::before {
    background: linear-gradient(transparent 10%, rgba(29, 78, 216, 0.95) 100%);
}

/* Specific Cards Mock Static Background Images Injection */
.core-gallery-grid .col-sm-6:nth-child(1) .gallery-media-card { background-image: url('https://images.unsplash.com/photo-1531403009284-440f080d1e12?auto=format&fit=crop&w=400&q=80'); }
.core-gallery-grid .col-sm-6:nth-child(2) .gallery-media-card { background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=400&q=80'); }
.core-gallery-grid .col-sm-6:nth-child(3) .gallery-media-card { background-image: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?auto=format&fit=crop&w=400&q=80'); }
.core-gallery-grid .col-sm-6:nth-child(4) .gallery-media-card { background-image: url('https://images.unsplash.com/photo-1485827404703-89b55fcc595e?auto=format&fit=crop&w=400&q=80'); }
.core-gallery-grid .col-sm-6:nth-child(5) .gallery-media-card { background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=400&q=80'); }
.core-gallery-grid .col-sm-6:nth-child(6) .gallery-media-card { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=400&q=80'); }

/* Powerhouse Engine Components Grid Layout */
.engine-corporate-card {
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.engine-corporate-card:hover {
    border-color: rgba(255,255,255,0.25) !important;
    transform: translateY(-2px);
}
.brand-avatar-circle {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.contribution-list-box {
    max-height: 260px;
    overflow-y: auto;
}

/* Radar Animation Center Core Engine Module */
.radar-pulse-core {
    position: relative;
    width: 80px; height: 80px;
}
.radar-ring {
    position: absolute;
    width: 100%; height: 100%;
    border: 2px solid #1D4ED8;
    border-radius: 50%;
    animation: radarSpreading 3s linear infinite;
    opacity: 0;
}
.rr-2 { animation-delay: 1s; }
.rr-3 { animation-delay: 2s; }
.radar-icon-plate {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #1D4ED8;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    box-shadow: 0 0 15px rgba(29, 78, 216, 0.6);
}

/* Progression Flow Steps Layout */
.progression-pill-item {
    transition: transform 0.3s ease;
}
.progression-pill-item:hover {
    transform: translateY(-2px);
}
.step-icon {
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Milestone Pillars Card Layout */
.pillar-milestone-card {
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.pillar-milestone-card:hover {
    background-color: #f8fafc !important;
    transform: translateY(-2px);
}

/* Testimonial Panel Slider Navigation Dots System */
.slider-dot {
    width: 24px; height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
}
.slider-dot.active {
    background: #1D4ED8;
    width: 36px;
}

/* Keyframe System Animation Tracks Mapping */
@keyframes rotateOrbitWheel {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes antiRotateNode {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}
@keyframes radarSpreading {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}
@keyframes bounceSequence {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}
.animate-bounce {
    animation: bounceSequence 2s infinite ease-in-out;
}

/* =========================================================================
   MOBILE & VIEWPORT RESPONSIVE SYSTEM MEDIA ADAPTATION LAYER
   ========================================================================== */
@media (max-width: 1200px) {
    .ecosystem-wheel-outer {
        width: 340px; height: 340px;
        margin-bottom: 40px;
    }
    .orbit-node { width: 60px; height: 60px; }
    .orbit-node .node-txt { width: 110px; font-size: 9px; }
    .on-1 { top: -30px; } .on-4 { bottom: -30px; }
    .on-2, .on-3 { right: -30px; } .on-5, .on-6 { left: -30px; }
}

@media (max-width: 768px) {
    .ecosystem-wheel-outer {
        width: 290px; height: 290px;
    }
    .wheel-center-plate { width: 110px; height: 110px; padding: 5px; }
    .wheel-center-plate h5 { font-size: 11px; }
    .orbit-node { width: 45px; height: 45px; }
    .orbit-node .node-icon { font-size: 0.9rem; }
    .orbit-node .node-txt { display: none; } /* Hide labels on tight mobile viewports for clean UI layout */
    
    .on-1 { top: -22px; left: calc(50% - 22px); }
    .on-2 { top: 50px; right: -22px; }
    .on-3 { bottom: 50px; right: -22px; }
    .on-4 { bottom: -22px; left: calc(50% - 22px); }
    .on-5 { bottom: 50px; left: -22px; }
    .on-6 { top: 50px; left: -22px; }

    /* Auto switch custom elements container to scroller decks for structural compliance */
    .contribution-list-box {
        max-height: 200px;
    }
}



/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-3 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/


/* =========================================================================
   SECTION 03 SYSTEM ARCHITECTURE EXTENSION STYLING SCHEMA (CYBER DECK)
   ========================================================================== */

/* Scoped Dark Theme Core Base Variables */
.htt-warroom-section {
    background-color: #030712 !important; /* Deep cosmic cybernetic darkness layout foundation */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.text-gradient-cyan {
    background: linear-gradient(135deg, #00f5ff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-glow {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-info-light { color: #38bdf8 !important; }
.text-purple-light { color: #c084fc !important; }
.border-white-5 { border-color: rgba(255, 255, 255, 0.05) !important; }
.bg-white-2 { background-color: rgba(255, 255, 255, 0.02) !important; }
.bg-dark-card { background-color: rgba(11, 17, 34, 0.7) !important; backdrop-filter: blur(12px); }
.bg-dark-card-gradient {
    background: linear-gradient(145deg, rgba(11, 17, 34, 0.9) 0%, rgba(3, 7, 18, 0.95) 100%) !important;
}
.font-micro { font-size: 10px; }
.font-mono { font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.min-w-max-content { min-width: max-content; }

/* Vector Mesh Layout & Neon Glow Orb Effects Layer */
.warroom-cyber-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0, 245, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 245, 255, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}
.glow-orb {
    position: absolute; width: 300px; height: 300px;
    border-radius: 50%; filter: blur(130px);
    pointer-events: none; z-index: 2; opacity: 0.15;
}
.glow-top-left { top: -50px; left: -50px; background-color: #00f5ff; }
.glow-bottom-right { bottom: -50px; right: -50px; background-color: #3b82f6; }

/* Cybernetic Status Badges Engine */
.cyber-status-badge {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    padding: 5px 10px; border-radius: 4px; display: inline-flex; align-items: center;
    letter-spacing: 0.5px; border: 1px solid transparent;
}
.badge-not-recorded { background: rgba(239, 68, 68, 0.1); color: #f87171; border-color: rgba(239, 68, 68, 0.2); }
.badge-not-prebuilt { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border-color: rgba(245, 158, 11, 0.2); }
.badge-not-marketing { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border-color: rgba(59, 130, 246, 0.2); }

/* Horizontal Adaptive Metrics Scroller Strip Layout */
.metrics-ribbon-scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.metrics-ribbon-scroller::-webkit-scrollbar { display: none; } /* Hide layout scroller scrollbar cleanly */
.metric-ribbon-item { text-align: center; padding: 0 10px; }
.metric-ribbon-item .num { font-size: 1.5rem; font-weight: 900; tracking: tight; line-height: 1.1; }
.metric-ribbon-item .lbl { font-size: 9px; text-uppercase: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-top: 3px; font-weight: 700; }
.metric-divider { width: 1px; height: 25px; background-color: rgba(255, 255, 255, 0.1); flex-shrink: 0; }

/* Dashboard Architectural Panel Units */
.cyber-dashboard-panel {
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.cyber-dashboard-panel:hover {
    border-color: rgba(0, 245, 255, 0.25) !important;
}
.panel-icon-pulse {
    width: 32px; height: 32px; border-radius: 6px;
    background: rgba(255,255,255,0.03); display: flex;
    align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}

/* Connected Ecosystem Grid Badges Alignment */
.eco-badge-item {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px; padding: 8px; font-size: 10px; font-weight: 600;
    color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px;
    transition: background 0.2s ease;
}
.eco-badge-item:hover {
    background: rgba(0, 245, 255, 0.05); color: #fff;
}

/* Operational Data Grid Metrics Table System CSS */
.btn-cyber-sm {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 4px 10px; border-radius: 4px; font-weight: 700;
}
.btn-cyber-sm:hover, .btn-cyber-sm:focus {
    background: rgba(0,245,255,0.1); color: #00f5ff; border-color: #00f5ff;
}
.cyber-table-matrix th { font-weight: 700; background-color: transparent !important; }
.cyber-table-matrix td { background-color: transparent !important; padding: 12px 8px !important; }
.avatar-cell-mock {
    width: 24px; height: 24px; display: inline-flex; align-items: center;
    justify-content: center; font-weight: 700; flex-shrink: 0;
}
.btn-link-cyan { color: #00f5ff; transition: color 0.2s ease; cursor: pointer; }
.btn-link-cyan:hover { color: #3b82f6; text-shadow: 0 0 8px rgba(0,245,255,0.3); }

/* Custom High-Tech Bar Telemetry Comparison Graph Layout */
.core-execution-graph-box { min-height: 140px; }
.graph-bar-item {
    display: flex; flex-direction: column; justify-content: flex-end;
    align-items: center; height: 120px; background: rgba(255,255,255,0.01);
}
.graph-bar-item .fill {
    width: 100%; height: var(--bar-h); max-width: 16px;
    border-radius: 4px 4px 0 0; animation: scaleUpGraphBar 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform-origin: bottom;
}
.bg-gradient-cyan { background: linear-gradient(to top, #3b82f6, #00f5ff) !important; }

/* Footer Lead Capture Components Architecture Layout */
.banner-rocket-badge {
    width: 50px; height: 50px; background: rgba(0,245,255,0.05);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.container-quick-anchors .quick-anchor-btn {
    color: rgba(255,255,255,0.6); text-decoration: none; padding: 6px 12px;
    border-radius: 6px; border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02);
    transition: all 0.2s ease;
}
.container-quick-anchors .quick-anchor-btn.active, .container-quick-anchors .quick-anchor-btn:hover {
    color: #fff; border-color: rgba(0,245,255,0.4); background: rgba(0,245,255,0.05);
}
.input-group-cyber .form-control {
    border-right-width: 1px !important; border-radius: 0 6px 6px 0 !important;
}
.input-group-cyber .form-control:focus {
    border-color: #00f5ff !important; box-shadow: 0 0 10px rgba(0,245,255,0.2) !important;
}
.btn-cyber-primary {
    background: linear-gradient(135deg, #00f5ff 0%, #3b82f6 100%); color: #030712;
    border: none; border-radius: 6px; padding: 8px 16px; transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-cyber-primary:hover {
    opacity: 0.95; transform: translateY(-1px); color: #030712;
}

/* Keyframe System Animation Mapping Engines */
@keyframes scaleUpGraphBar {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}
.animate-pulse-slow {
    animation: pulseSlowTrack 3s infinite ease-in-out;
}
@keyframes pulseSlowTrack {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* =========================================================================
   MOBILE & VIEWPORT RESPONSIVE SYSTEM MEDIA ADAPTATION LAYER
   ========================================================================== */
@media (max-width: 1200px) {
    .core-execution-graph-box { display: none !important; } /* Simplify telemetry graphs layout vectors on small screens */
}
@media (max-width: 768px) {
    .metrics-ribbon-scroller { margin-left: -15px; margin-right: -15px; padding-left: 15px; }
    .action-conversion-lead-banner { padding: 25px 15px !important; }
    .capture-embedded-card { margin-top: 20px; }
}


/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-4 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/

/* =========================================================================
   SECTION 04: THE HTT ECOSYSTEM TRANSFORMATION CORE SPECIFICATION
   ========================================================================== */

/* Layout Scoped Structural Base Overlays */
.htt-ecosystem-section {
    background-color: #020617 !important; /* Deep cosmic slate space architecture */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.ecosystem-cyber-mesh {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none; z-index: 1;
}
.ecosystem-glow-orb {
    position: absolute; width: 450px; height: 450px;
    border-radius: 50%; filter: blur(160px);
    pointer-events: none; z-index: 2; opacity: 0.12;
}
.orb-dark-blue { top: 10%; right: -100px; background-color: #1e3a8a; }
.orb-white-glow { bottom: 5%; left: -150px; background-color: #38bdf8; }

/* Header Component Infrastructure */
.badge-eco-track {
    background-color: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
}
.eco-tagline-strip {
    backdrop-filter: blur(8px);
}
.max-w-900 { max-width: 900px; }
.max-w-800 { max-w: 800px; }
.p-2\.5 { padding: 10px !important; }

/* Interactive Foundation Triad Node Controllers */
.btn-eco-node {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px; padding: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}
.btn-eco-node:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}
.btn-eco-node.active {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-color: rgba(56, 189, 248, 0.5) !important;
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.1);
}
.eco-panels-deck {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.eco-panel-view {
    transition: opacity 0.4s ease;
}

/* Touch Scroller Grid System for Adaptive Participant Modules */
.eco-scroller-platform {
    -webkit-overflow-scrolling: touch;
}
.eco-scroller-platform::-webkit-scrollbar {
    height: 4px;
}
.eco-scroller-platform::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.eco-scroller-platform::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.eco-participant-card {
    transition: all 0.3s ease;
    cursor: default;
}
.eco-participant-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.card-icon-box {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    display: flex; align-items: center; justify-content: center;
}

/* Intelligence Matrix Blueprint Blocks */
.sync-points-grid .col-sm-6 div {
    transition: background 0.2s ease, transform 0.2s ease;
}
.sync-points-grid .col-sm-6 div:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(2px);
}
.fa-spin-slow {
    animation: fa-spin 8s linear infinite;
}

/* Media Query Adaptations for Mobile Optimization */
@media (max-width: 991px) {
    .btn-eco-node { padding: 12px; }
    .eco-panels-deck { padding: 20px !important; }
}
@media (max-width: 767px) {
    .eco-scroller-platform { margin-left: -15px; margin-right: -15px; padding-left: 15px; }
    .eco-lead-banner { padding: 25px 20px !important; }
    .container-phrases-matrix { margin-bottom: 20px; }
}


/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-5 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/

/* =========================================================================
   SECTION 05: WHAT EXACTLY IS HTT STUDIO™ COMPONENT STYLING SPECIFICATION
   ========================================================================== */

/* Layout Scoped Structural Base Overlays */
.htt-difference-section {
    background-color: #020617 !important; /* Midnight Deep Space Base */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.diff-kinetic-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none; z-index: 1;
}
.diff-gradient-luminescence {
    width: 600px; height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    pointer-events: none; z-index: 2;
}

/* Header Component Infrastructure */
.badge-diff-track {
    background-color: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
}
.bg-danger-900 {
    background-color: rgba(220, 38, 38, 0.1) !important;
}
.text-danger-light {
    color: #fca5a5 !important;
}
.border-danger-subtle-10 {
    border-color: rgba(220, 38, 38, 0.15) !important;
}
.border-info-subtle-10 {
    border-color: rgba(56, 189, 248, 0.15) !important;
}
.panel-pill-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
}
.bg-dark-blue-card {
    background-color: rgba(15, 23, 42, 0.6);
}

/* Horizontal Pipeline Step Scroller Base styling */
.lifecycle-pipeline-scroller {
    -webkit-overflow-scrolling: touch;
}
.lifecycle-pipeline-scroller::-webkit-scrollbar {
    height: 4px;
}
.lifecycle-pipeline-scroller::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.lifecycle-pipeline-scroller::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.lifecycle-step-node {
    width: 175px;
    transition: all 0.3s ease;
    cursor: default;
}
.lifecycle-step-node:hover {
    border-color: rgba(56, 189, 248, 0.4) !important;
    background-color: rgba(15, 23, 42, 0.9) !important;
    transform: translateY(-2px);
}
.step-connector-arrow {
    font-size: 0.65rem;
    opacity: 0.5;
}

/* Interactive Multi-Domain Deck Layer Controls */
.btn-studio-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-studio-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
}
.btn-studio-tab.active {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(56, 189, 248, 0.5) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.08);
}
.studio-tab-content-wrapper {
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.studio-tab-panel {
    transition: opacity 0.3s ease;
}

/* Adaptation Layer Mixins for Seamless Media Optimization */
@media (max-width: 767px) {
    .lifecycle-pipeline-scroller { margin-left: -15px; margin-right: -15px; padding-left: 15px; }
    .diff-lead-banner { padding: 25px 20px !important; }
}



/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-6 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/





/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-7 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/





/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-8 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/





/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-9 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-10 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/







/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-11 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-12 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-13 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/







/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-14 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-15 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/







/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-16 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/








/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-17 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/









/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-18 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/





/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-19 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-20 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/







/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-21 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-22 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-23 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/







/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-24 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-25 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/







/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-26 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/








/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-27 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/











/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-28 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/





/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-29 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-30 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/







/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-31 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-32 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-33 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/







/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-34 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/






/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-35 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/







/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-36 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/








/* --------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
--------------------------- SECTION-37 ------------------------------------------------------------
-------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------*/