/* ==========================================================================
   GLOBAL STYLE SHEET INJECTIONS & RESET MATRICES
   ========================================================================== */
:root {
    --utility-bg-dark: #050b14;
    --brand-orange: #ff5500;
    --border-mesh-line: #eaecf0;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --canvas-light-background: #fafbfe;
    --headline-slate-dark: #070f1e;
}

body {
    font-family: var(--font-primary);
    background-color: var(--canvas-light-background);
    color: #334155;
    margin: 0; padding: 0;
    overflow-x: hidden;
}

.header-container-wrapper { width: 100%; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.header-container-fluid { width: 100%; display: flex; align-items: stretch; justify-content: space-between; }

/* ==========================================================================
   HEADER STRUCTURAL STYLING COMPONENTS
   ========================================================================== */
.top-utility-bar { background-color: var(--utility-bg-dark); padding: 8px 0; min-height: 52px; display: flex; align-items: center; position: relative; z-index: 1010; }
.social-icons-group { display: flex; align-items: center; gap: 16px; }
.social-link { color: #ffffff; font-size: 14px; opacity: 0.85; text-decoration: none; transition: transform 0.2s; }
.social-link:hover { transform: translateY(-2px); color: #3b82f6; }
.utility-actions-group { display: flex; align-items: center; gap: 20px; }
.lang-text { color: #ffffff; font-size: 11.5px; font-weight: 700; }
.utility-text-link { color: #ffffff; font-size: 13px; font-weight: 600; text-decoration: none; }
.utility-divider { color: rgba(255, 255, 255, 0.2); }

.custom-switch { position: relative; display: inline-block; width: 36px; height: 18px; }
.custom-switch input { opacity: 0; width: 0; height: 0; }
.switch-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #1e293b; transition: .25s; border-radius: 20px; }
.switch-slider:before { position: absolute; content: ""; height: 12px; width: 12px; left: 3px; bottom: 3px; background-color: white; transition: .25s; border-radius: 50%; }
input:checked + .switch-slider { background-color: #0d46d2; }
input:checked + .switch-slider:before { transform: translateX(18px); }

.btn-self-analysis { border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 6px; padding: 5px 14px; color: #ffffff; font-size: 12.5px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn-self-analysis:hover { background-color: white; color: var(--utility-bg-dark); }

.instant-meeting-capsule { display: inline-flex; align-items: center; position: relative; height: 42px; padding: 2px 4px 2px 16px; background-color: #030a14; border: 1.2px solid #0d46d2; border-radius: 50px; text-decoration: none; }
.meeting-meta-data { display: flex; flex-direction: column; text-align: left; margin-right: 12px; margin-top: 3px; }
.meeting-main-title { font-size: 13px; font-weight: 700; color: #ffffff; margin: 0; }
.meeting-sub-title { font-size: 10px; font-weight: 400; color: #94a3b8; margin: 0; }
.video-frame-circle { width: 32px; height: 32px; background-color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.video-frame-circle i { font-size: 12px; color: #2261ff; animation: pulseRadar 2s infinite; }
.live-status-badge { position: absolute; top: -10px; left: 32px; display: inline-flex; align-items: center; gap: 3.5px; padding: 1px 6px; background-color: #240f13; border-radius: 4px; font-size: 8px; font-weight: 800; color: #ff4d6d; text-transform: uppercase; }
.live-indicator-dot { width: 4.5px; height: 4.5px; background-color: #00e676; border-radius: 50%; }

.main-nav-container { background-color: #ffffff; border-bottom: 1px solid var(--border-mesh-line); position: relative; z-index: 1000; }
.brand-identity-block { display: flex; align-items: center; padding: 12px 20px 12px 40px; }
.ht-logo-gradient { font-size: 34px; font-weight: 900; background: linear-gradient(135deg, #0052d4 0%, #4364f7 50%, #6fb1fc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -1.5px; margin-right: 14px; }
.brand-title { font-size: 23px; font-weight: 800; color: #0a1324; margin: 0; }
.brand-attribution { margin-top: 4px; }
.attribution-line { margin: 0; font-size: 10px; font-weight: 600; color: #64748b; text-transform: uppercase; }
.text-bold-dark { font-weight: 800; color: #0f172a; }
.text-bold-orange { font-weight: 800; color: var(--brand-orange); }
.vertical-brand-separator { width: 1px; height: 50px; background-color: var(--border-mesh-line); margin-left: 26px; }

.alignment-nav-links { display: flex; align-items: stretch; flex-grow: 1; margin: 0; padding: 0; }
.custom-nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--border-mesh-line); min-width: 95px; background-color: #ffffff; transition: background-color 0.2s; }
.custom-nav-item:hover { background-color: #f8fafc; }
.custom-nav-item .nav-link { display: flex !important; flex-direction: column !important; align-items: center !important; width: 100%; height: 100%; padding: 18px 4px 10px 4px !important; text-align: center; text-decoration: none; }
.nav-icon-stacked { font-size: 21px; color: #0f172a; margin-bottom: 9px; transition: transform 0.2s; }
.custom-nav-item:hover .nav-icon-stacked { transform: translateY(-2px); color: #4f46e5; }
.nav-label-text { font-size: 11.5px; font-weight: 700; color: #0f172a; line-height: 1.25; display: block; margin-bottom: 6px; }
.arrow-icon { font-size: 10px; color: #94a3b8; margin-top: auto; }

/* ==========================================================================
   HERO VIEWPORT LAYOUT & BRAND NEW INTEGRATED VISUAL STUDIO BACKGROUND 
   ========================================================================== */
.hero-viewport-wrapper {
    padding: 60px 0;
    position: relative;
    /* Clean overlay system blending the production layout seamlessly into your generated file assets */
    background-image: 
        linear-gradient(180deg, rgba(250, 251, 254, 0.92) 0%, rgba(241, 245, 249, 0.75) 100%),
        url('assets/images/images/watermarked_img_5385907299924719291-1.png');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    transition: background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-container-fluid-custom { max-width: 1540px; margin: 0 auto; padding: 0 40px; }
.hero-split-grid-row { display: grid; grid-template-columns: 360px 1fr 270px; gap: 30px; align-items: center; }

.hero-editorial-panel { z-index: 5; }
.hero-pill-badge { display: inline-block; background-color: rgba(99, 102, 241, 0.08); color: #4f46e5; font-size: 9.5px; font-weight: 800; padding: 6px 14px; border-radius: 4px; letter-spacing: 0.8px; margin-bottom: 24px; border: 1px solid rgba(99, 102, 241, 0.15); }
.animated-glow-pill { animation: borderGlow 4s infinite alternate; }

@keyframes borderGlow {
    0% { border-color: rgba(99, 102, 241, 0.15); box-shadow: 0 0 0 rgba(99, 102, 241, 0); }
    100% { border-color: rgba(99, 102, 241, 0.4); box-shadow: 0 0 8px rgba(99, 102, 241, 0.1); }
}

.hero-main-headline { font-size: 34px; font-weight: 800; color: var(--headline-slate-dark); line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 22px; }
.electric-purple-gradient-text { background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-paragraph-lead { font-size: 13.5px; line-height: 1.6; color: #475569; font-weight: 500; margin-bottom: 30px; }

.pillar-inline-row-tags { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.pillar-tag-item { display: flex; align-items: center; gap: 10px; cursor: help; }
.pillar-icon-shell { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.pillar-icon-shell.violet-bg { background-color: #f3e8ff; color: #7c3aed; }
.pillar-icon-shell.blue-bg { background-color: #e0f2fe; color: #0369a1; }
.pillar-icon-shell.purple-bg { background-color: #fae8ff; color: #c026d3; }
.pillar-icon-shell.royal-bg { background-color: #e0e7ff; color: #4338ca; }
.pillar-text-lbl { font-size: 11.5px; font-weight: 700; color: #1e293b; }

.hero-buttons-action-row { display: flex; align-items: center; gap: 14px; margin-bottom: 35px; }
.btn-hero-primary { background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%); color: #ffffff !important; font-size: 13px; font-weight: 700; padding: 12px 24px; border-radius: 8px; text-decoration: none; box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25); position: relative; overflow: hidden; }
.structural-pulse { animation: primaryPulse 3s infinite; }

@keyframes primaryPulse {
    0% { box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25); }
    50% { box-shadow: 0 4px 24px rgba(79, 70, 229, 0.45); }
    100% { box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25); }
}

.btn-hero-secondary { background-color: #ffffff; border: 1px solid #e2e8f0; color: #334155; font-size: 13px; font-weight: 700; padding: 12px 24px; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-hero-secondary:hover { border-color: #cbd5e1; background-color: #f8fafc; }
.btn-hero-secondary i { color: #4f46e5; font-size: 10px; }

.scroll-explore-hint { display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 800; color: #64748b; letter-spacing: 0.5px; }
.mouse-icon-animated { width: 14px; height: 22px; border: 1.5px solid #64748b; border-radius: 10px; position: relative; }
.mouse-wheel { width: 2px; height: 4px; background-color: #64748b; position: absolute; top: 4px; left: 50%; transform: translateX(-50%); animation: wheelScroll 1.4s infinite; }

@keyframes wheelScroll {
    0% { top: 4px; opacity: 1; }
    100% { top: 12px; opacity: 0; }
}

/* ==========================================================================
   CENTER GEOMETRIC WORKFLOW RING SYSTEM (INTERACTIVE Engine)
   ========================================================================== */
.hero-graphics-ring-canvas-area { display: flex; justify-content: center; align-items: center; position: relative; padding: 40px 0; }
.workflow-ring-frame-system { position: relative; width: 530px; height: 530px; border: 1.5px solid rgba(15, 23, 42, 0.08); border-radius: 50%; background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%); transition: all 0.4s ease; }

.center-workflow-hub { 
    position: absolute; top: 35%; left: 50%; transform: translate(-50%, -50%); 
    width: 200px; height: 200px; background: rgba(255, 255, 255, 0.96); 
    border: 2px solid #4f46e5; border-radius: 50%; 
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08); z-index: 10; 
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
    text-align: center; padding: 18px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-subtitle { font-size: 9px; font-weight: 800; color: #94a3b8; letter-spacing: 1px; }
.hub-title { font-size: 12px; font-weight: 800; color: #0f172a; margin: 4px 0; line-height: 1.2; }
.hub-pill-highlight { background-color: #e0e7ff; color: #4f46e5; font-size: 9px; font-weight: 800; padding: 2px 8px; border-radius: 4px; margin-bottom: 6px; text-transform: uppercase; }
.hub-experience { font-size: 9.5px; font-weight: 500; color: #475569; line-height: 1.3; }

/* Node Architecture Settings */
.process-circular-node-card { 
    position: absolute; background-color: #ffffff; border-radius: 10px; padding: 8px 12px; 
    border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
    display: flex; align-items: flex-start; gap: 10px; width: 185px; z-index: 15; 
    cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); 
}
.process-circular-node-card:hover, .process-circular-node-card.node-active {
    transform: translateY(-4px) scale(1.02);
    border-color: #4f46e5;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.08);
}

.node-badge-icon { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.node-badge-icon.color-1 { background-color: #f5f3ff; color: #8b5cf6; }
.node-badge-icon.color-2 { background-color: #fff7ed; color: #f97316; }
.node-badge-icon.color-3 { background-color: #f0fdf4; color: #22c55e; }
.node-badge-icon.color-4 { background-color: #eff6ff; color: #3b82f6; }
.node-badge-icon.color-5 { background-color: #ecfdf5; color: #10b981; }
.node-badge-icon.color-6 { background-color: #fdf2f8; color: #ec4899; }
.node-badge-icon.color-7 { background-color: #fef2f2; color: #ef4444; }

.node-content-box { display: flex; flex-direction: column; }
.node-num-label { font-size: 8px; font-weight: 800; color: #94a3b8; margin-bottom: 1px; }
.process-circular-node-card h5 { font-size: 9.5px; font-weight: 800; color: #0f172a; margin: 0 0 2px 0; letter-spacing: 0.3px; }
.process-circular-node-card p { font-size: 8.5px; color: #64748b; margin: 0; line-height: 1.3; }

/* Trigonometric Positioning Layout Coordinates */
.step-node-1 { top: -2%; left: 50%; transform: translateX(-50%); }
.step-node-2 { top: 12%; right: -12%; }
.step-node-3 { top: 40%; right: -15%; }
.step-node-4 { bottom: 10%; right: -2%; }
.step-node-5 { bottom: -2%; left: 18%; }
.step-node-6 { top: 44%; left: -16%; }
.step-node-7 { top: 12%; left: -8%; }

/* Image Layer Elements */
.workplace-sitting-avatar-layer { position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); width: 310px; height: 210px; z-index: 8; pointer-events: none; }
.avatar-cropped-wrapper { width: 100%; height: 100%; overflow: hidden; mask-image: linear-gradient(to bottom, black 65%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%); }
.img-avatar-studio-element { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }

/* Glass HUD Micro-Animations */
.hud-glass-widget { position: absolute; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06); border-radius: 12px; z-index: 20; padding: 10px 14px; }
.hud-icon-badge { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.hud-details-text h6 { font-size: 10px; font-weight: 800; margin: 0 0 2px 0; color: #0f172a; }
.hud-details-text p { font-size: 8.5px; color: #475569; margin: 0; }

.hud-code-commit { bottom: 15%; left: -6%; display: flex; align-items: center; gap: 10px; width: 145px; }
.hud-live-deployment { bottom: 26%; right: -8%; display: flex; align-items: center; gap: 10px; width: 165px; }
.text-emerald { color: #10b981; font-weight: 700; }

.hud-project-progress { top: 48%; left: 24%; width: 210px; background: rgba(15, 23, 42, 0.95); border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; }
.hud-progress-row-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 6px; margin-bottom: 8px; }
.hud-widget-title { font-size: 8.5px; font-weight: 700; color: #94a3b8; letter-spacing: 0.5px; }
.hud-percentage-badge { font-size: 9px; font-weight: 800; background-color: #10b981; color: #ffffff; padding: 1px 5px; border-radius: 4px; }
.hud-progress-sub-bar-data { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hud-meta-info h6 { font-size: 10px; font-weight: 700; margin: 0; color: #ffffff; }
.hud-meta-info p { font-size: 8.5px; color: #94a3b8; margin: 0; }

.hud-avatars-cluster-mini { display: flex; align-items: center; }
.mini-circle-avatar { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #0f172a; margin-left: -5px; background-size: cover; background-position: center; }
.count-more-node { background-color: #334155; color: #ffffff; font-size: 6.5px; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* Float Logic Blocks */
.float-animation-slow { animation: elementFloat 4s infinite ease-in-out; }
.float-animation-delayed { animation: elementFloat 4s infinite ease-in-out; animation-delay: 2s; }
.bounce-loop { animation: miniBounce 2s infinite ease-in-out; }

@keyframes elementFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}
@keyframes miniBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Mug Asset Layer */
.hud-coffee-mug-layer { position: absolute; bottom: 6%; right: 14%; z-index: 22; display: flex; align-items: center; }
.coffee-mug-body { width: 32px; height: 35px; background-color: #0f172a; border-radius: 0 0 6px 6px; display: flex; align-items: center; justify-content: center; padding: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
.mug-brand-text { font-size: 5px; font-weight: 800; color: #ffffff; text-align: center; line-height: 1.1; display: block; }
.coffee-mug-handle { width: 8px; height: 18px; border: 3px solid #0f172a; border-left: transparent; border-radius: 0 8px 8px 0; margin-left: -1px; }

/* ==========================================================================
   RIGHT SIDEBAR: METRIC MONITOR PANEL
   ========================================================================== */
.hero-live-feed-sidebar-panel { background-color: #ffffff; border: 1px solid #f1f5f9; border-radius: 16px; padding: 20px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03); z-index: 5; }
.feed-live-header-indicator { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pulse-radar-dot { width: 6px; height: 6px; background-color: #ef4444; border-radius: 50%; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); animation: radarPulse 1.6s infinite; }

@keyframes radarPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.feed-header-label { font-size: 10px; font-weight: 800; color: #475569; letter-spacing: 0.5px; }
.feed-project-scope-badge-box { border-bottom: 1px solid #f1f5f9; padding-bottom: 12px; margin-bottom: 16px; }
.feed-project-scope-badge-box h4 { font-size: 14px; font-weight: 800; color: #0f172a; margin: 0 0 4px 0; transition: color 0.3s; }
.status-pill-progress { display: inline-block; background-color: #eff6ff; color: #2563eb; font-size: 8.5px; font-weight: 800; padding: 2px 8px; border-radius: 4px; }

.feed-timeline-list-wrapper { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.timeline-feed-item { display: flex; align-items: center; gap: 12px; }
.slide-in-item { animation: rowSlideIn 0.4s ease-out forwards; }

@keyframes rowSlideIn {
    0% { opacity: 0; transform: translateX(10px); }
    100% { opacity: 1; transform: translateX(0); }
}

.timeline-profile-pic-frame { width: 26px; height: 26px; border-radius: 50%; background-size: cover; background-position: center; background-color: #e2e8f0; }
.timeline-icon-box-shell { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.timeline-icon-box-shell.color-code { background-color: #f3e8ff; color: #a855f7; }
.timeline-icon-box-shell.color-database { background-color: #e0f2fe; color: #0284c7; }

.timeline-meta-details-info { flex-grow: 1; }
.timeline-meta-details-info h5 { font-size: 11.5px; font-weight: 700; color: #1e293b; margin: 0 0 1px 0; }
.timeline-meta-details-info p { font-size: 10px; color: #64748b; margin: 0; }
.timeline-time-stamp-tag { font-size: 9px; color: #94a3b8; font-weight: 600; }

.view-live-dashboard-action-trigger { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 10px; background-color: #f8fafc; border-radius: 8px; color: #4f46e5; font-size: 11px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.view-live-dashboard-action-trigger:hover { background-color: #f1f5f9; color: #3b82f6; }
.animate-arrow-kick { animation: arrowKick 1.5s infinite; }

@keyframes arrowKick {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* ==========================================================================
   LOWER CAROUSEL TRACK COMPONENT
   ========================================================================== */
.career-roles-scroller-strip-container { display: flex; align-items: center; gap: 16px; background-color: #ffffff; border: 1px solid #f1f5f9; padding: 12px; border-radius: 14px; margin-top: 40px; }
.strip-navigation-arrow { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #e2e8f0; background-color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #64748b; cursor: pointer; transition: all 0.2s; }
.strip-navigation-arrow:hover { background-color: #f8fafc; color: #0f172a; border-color: #cbd5e1; }

.strip-scroller-viewport-track { display: flex; align-items: center; gap: 16px; flex-grow: 1; overflow-x: auto; scroll-behavior: smooth; }
.strip-scroller-viewport-track::-webkit-scrollbar { display: none; }

.profile-card-node-item { display: flex; align-items: center; gap: 12px; padding: 8px 16px; border-radius: 10px; min-width: 220px; border: 1px solid transparent; position: relative; transition: all 0.2s; }
.profile-card-node-item:hover { background-color: #f8fafc; }
.focus-active-card { background-color: #f8fafc; border-color: #e2e8f0; }

.profile-thumbnail-image { width: 34px; height: 34px; border-radius: 50%; background-size: cover; background-position: center; background-color: #cbd5e1; }
.profile-role-meta-block h5 { font-size: 11px; font-weight: 800; color: #0f172a; margin: 0 0 2px 0; letter-spacing: 0.3px; }
.profile-role-meta-block p { font-size: 10px; color: #64748b; margin: 0; }
.active-dot-indicator-matrix { display: flex; gap: 3px; position: absolute; bottom: 8px; right: 12px; }
.active-dot-indicator-matrix span { width: 3px; height: 3px; background-color: #3b82f6; border-radius: 50%; }

/* ==========================================================================
   GLOBAL SUMMARY STATISTICS STRIP (INTERACTIVE COUNTERS)
   ========================================================================== */
.global-metrics-infographic-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 24px; }
.metric-card-box { background-color: #ffffff; border: 1px solid #f1f5f9; border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 14px; transition: transform 0.2s; }
.metric-card-box:hover { transform: translateY(-2px); }

.shadow-highlight-accent { box-shadow: 0 10px 25px rgba(239, 68, 68, 0.04); border-color: #fee2e2; }
.metric-icon-wrapper-frame { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.brand-purple-shimmer { background-color: #f3e8ff; color: #7c3aed; }
.brand-emerald-shimmer { background-color: #dcfce7; color: #059669; }
.brand-blue-shimmer { background-color: #dbeafe; color: #2563eb; }
.brand-orange-shimmer { background-color: #ffedd5; color: #ea580c; }
.brand-crimson-shimmer { background-color: #fee2e2; color: #dc2626; }

.metric-digits-info h3 { font-size: 20px; font-weight: 800; color: #0f172a; margin: 0 0 2px 0; }
.metric-digits-info h6 { font-size: 9px; font-weight: 800; color: #475569; margin: 0 0 1px 0; letter-spacing: 0.3px; }
.metric-digits-info p { font-size: 9px; color: #94a3b8; margin: 0; }

/* ==========================================================================
   RESTORED ORIGINAL ROBUST MOBILE DRAWER DESIGN MATRICES
   ========================================================================== */
.hamburger-menu-trigger { background: transparent; border: none; width: 24px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; margin-right: 20px; align-self: center; }
.hamburger-menu-trigger .bar { width: 100%; height: 2px; background-color: #0f172a; }

.mobile-navigation-drawer { 
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px; height: 100vh; 
    background-color: #ffffff; box-shadow: -6px 0 25px rgba(15, 23, 42, 0.15); z-index: 2000; 
    display: flex; flex-direction: column; transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.mobile-navigation-drawer.drawer-active { right: 0; }

.drawer-header-branding { 
    display: flex; align-items: center; justify-content: space-between; 
    padding: 20px; border-bottom: 1px solid var(--border-mesh-line); background-color: #ffffff; 
}
.drawer-logo-text { font-size: 16px; font-weight: 800; color: #0f172a; letter-spacing: -0.3px; }
.btn-close-drawer-cross { background: transparent; border: none; font-size: 26px; color: #64748b; line-height: 1; padding: 0; }

.mobile-drawer-link-scroll { display: flex; flex-direction: column; overflow-y: auto; flex-grow: 1; background-color: #ffffff; }

/* Restored original structured horizontal layout grid rows */
.mobile-nav-row { 
    display: flex; align-items: center; padding: 18px 24px; 
    border-bottom: 1px solid var(--border-mesh-line); color: #1e293b !important; 
    text-decoration: none; font-weight: 700; font-size: 13.5px; transition: background-color 0.15s ease; 
}
.mobile-nav-row:hover { background-color: #f8fafc; }
.mobile-nav-row i:first-child { font-size: 18px; color: #0f172a; width: 28px; text-align: left; }
.mobile-nav-row span { flex-grow: 1; margin-left: 4px; color: #0f172a; }
.arrow-indicator { font-size: 11px; color: #94a3b8; }

.drawer-underlay-backdrop { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: rgba(5, 11, 20, 0.4); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.drawer-underlay-backdrop.backdrop-active { opacity: 1; pointer-events: auto; }
.mobile-quick-actions { display: flex; align-items: center; gap: 12px; margin-right: 15px; }

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1400px) {
    .hero-split-grid-row { grid-template-columns: 1fr; gap: 40px; }
    .hero-editorial-panel { max-width: 600px; margin: 0 auto; text-align: center; }
    .pillar-inline-row-tags { align-items: center; }
    .hero-buttons-action-row { justify-content: center; }
    .scroll-explore-hint { justify-content: center; }
    .hero-live-feed-sidebar-panel { max-width: 450px; width: 100%; margin: 0 auto; }
    .global-metrics-infographic-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
    .global-metrics-infographic-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-container-fluid-custom { padding: 0 20px; }
    .hero-main-headline { font-size: 28px; }
    .workflow-ring-frame-system { width: 100%; height: auto; border: none; border-radius: 0; display: flex; flex-direction: column; gap: 16px; background-image: none; }
    .center-workflow-hub { display: block; position: relative; top: auto; left: auto; transform: none; width: 100%; height: auto; border-radius: 12px; margin-bottom: 20px; }
    .process-circular-node-card { position: relative; top: auto; left: auto; right: auto; bottom: auto; transform: none !important; width: 100%; }
    .workplace-sitting-avatar-layer { display: none; }
    .hud-glass-widget { position: relative; top: auto; left: auto; right: auto; bottom: auto; transform: none !important; width: 100%; margin-top: 10px; }
    .hud-coffee-mug-layer { display: none; }
    .global-metrics-infographic-row { grid-template-columns: 1fr; }
    .hero-buttons-action-row { flex-direction: column; align-items: stretch; }
}

/* ==========================================================================
   DOMAINS & ROLES SHOWCASE SYSTEM STYLING
   ========================================================================== */
.domains-viewport-section {
    background-color: #030812; /* Matching the ultra-deep navy palette */
    padding: 60px 0 80px 0;
    width: 100%;
    overflow: hidden;
}

.domains-container-fluid {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 40px;
}

.domains-header-block {
    text-align: center;
    margin-bottom: 40px;
}

.domains-section-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Domain Navigation Bar Setup */
.domain-tabs-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox compliance */
    -ms-overflow-style: none; /* IE/Edge compliance */
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.domain-tabs-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari mask */
}

.domain-tabs-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 1200px; /* Guarantees layout spacing without crowding icons */
    padding-bottom: 12px;
}

.domain-tab-btn {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 8px 12px;
    position: relative;
    flex: 1;
}

.domain-tab-btn i {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.domain-tab-btn span {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Active Highlight & Hover States */
.domain-tab-btn:hover {
    color: #94a3b8;
}
.domain-tab-btn:hover i {
    transform: translateY(-2px);
}

.domain-tab-btn.tab-active {
    color: var(--brand-orange, #ff5500);
}

.domain-tab-btn.tab-active::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-orange, #ff5500);
    box-shadow: 0 -2px 10px var(--brand-orange, #ff5500);
}

/* Grid Representation Core Layout */
.roles-display-grid-canvas {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    width: 100%;
}

/* Component Roles Cards Layout Structure */
.role-showcase-card {
    position: relative;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background-image: url('assets/images/images/watermarked_img_5385907299924719291-1.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cybernetic Glowing Tints Blue/Cyan HUD Effect Over Background */
.role-card-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(13, 70, 210, 0.45) 0%, rgba(3, 8, 18, 0.92) 90%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.role-card-content-wrapper {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.role-card-meta-tag {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.role-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.role-card-subtext {
    font-size: 9.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Card Interaction Animations */
.role-showcase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 30px rgba(0, 82, 212, 0.15);
}

.role-showcase-card:hover .role-card-bg-overlay {
    opacity: 0.85;
    background: linear-gradient(180deg, rgba(255, 85, 0, 0.25) 0%, rgba(3, 8, 18, 0.95) 90%);
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVENESS MATRICES
   ========================================================================== */
@media (max-width: 1400px) {
    .roles-display-grid-canvas {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 991.98px) {
    .roles-display-grid-canvas {
        grid-template-columns: repeat(2, 1fr);
    }
    .domains-container-fluid {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .roles-display-grid-canvas {
        grid-template-columns: 1fr;
    }
    .role-showcase-card {
        height: 180px;
    }
}

/* ==========================================================================
   CONVERSION CARD & METHODOLOGY STEPPER CARDS
   ========================================================================== */
.conversion-approach-section {
    background-color: #fafbfe; /* Matches canvas-light-background */
    padding: 90px 0;
    width: 100%;
}

.canvas-container-fluid {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 40px;
}

.split-proposition-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 90px;
}

/* Badge Utilities */
.pill-badge-utility {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    background-color: rgba(79, 70, 229, 0.06);
}
.pill-badge-utility.text-purple { color: #4f46e5; }

.section-prime-headline {
    font-size: 42px;
    font-weight: 800;
    color: #070f1e; /* headline-slate-dark */
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin: 0 0 16px 0;
}
.electric-blue-text { color: #4364f7; }

.editorial-lead-paragraph {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    max-width: 680px;
    margin: 0 0 40px 0;
}

/* Four-Column Micro Features Setup */
.micro-features-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.micro-feature-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.micro-feature-item .m-icon-shell {
    color: #4f46e5;
    font-size: 18px;
}

.micro-feature-item .m-txt h6 {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.micro-feature-item .m-txt p {
    font-size: 11.5px;
    line-height: 1.4;
    color: #64748b;
    margin: 0;
}

/* Row Infographic Counter Setup */
.embedded-metrics-strip-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: 0 4px 20px rgba(7, 15, 30, 0.02);
}

.mini-counter-box {
    text-align: center;
    border-right: 1px solid #eaecf0;
    padding: 0 10px;
}
.mini-counter-box:last-child { border-right: none; }

.mini-counter-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #4f46e5;
    margin: 0 0 4px 0;
}

.mini-counter-box p {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

/* ==========================================================================
   INTERACTIVE GRADIENT CONVERSION LEAD FORM
   ========================================================================== */
.lead-generation-card-wrapper {
    position: relative;
}

.lead-form-container-box {
    background: linear-gradient(145deg, #5014d0 0%, #2000b0 100%);
    border-radius: 18px;
    padding: 36px 30px;
    box-shadow: 0 20px 40px rgba(32, 0, 176, 0.2);
    color: #ffffff;
}

.form-title-heading {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 8px 0;
}
.form-title-heading span { color: #a5b4fc; }

.form-subtitle-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 28px 0;
    line-height: 1.4;
}

.interactive-capture-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.input-field-group-shell {
    position: relative;
    width: 100%;
}

.input-field-group-shell i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.input-field-group-shell input,
.input-field-group-shell select {
    width: 100%;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0 16px 0 46px;
    color: #ffffff;
    font-size: 13.5px;
    outline: none;
    transition: all 0.2s ease;
}

.input-field-group-shell select option {
    background-color: #2000b0;
    color: #ffffff;
}

.input-field-group-shell input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-field-group-shell input:focus,
.input-field-group-shell select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.btn-form-action-submit {
    height: 48px;
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}
.btn-form-action-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
}

/* Trust Elements inside lead box */
.form-trust-footer-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.mini-avatar-pile-cluster {
    display: flex;
    align-items: center;
}
.pile-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #2000b0;
    margin-left: -6px;
    background-size: cover;
    background-position: center;
}
.pile-avatar:first-child { margin-left: 0; }

.trust-stat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.3;
}

/* Absolute Handdrawn Pointer Badge Elements */
.handdrawn-hint-annotation {
    position: absolute;
    right: -110px;
    bottom: 40px;
    display: flex;
    align-items: center;
}
.hint-curve-text {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #4f46e5;
    line-height: 1.3;
    transform: rotate(6deg);
}

/* ==========================================================================
   LOWER PANELS: METHODOLOGY TIMELINE APPROACH SECTION
   ========================================================================== */
.approach-methodology-container-shelf {
    background-color: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(7, 15, 30, 0.01);
}

.methodology-split-header-row {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 50px;
    align-items: center;
}

.methodology-left-hero-image-block {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
}

.methodology-studio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Status HUD Indicators setup */
.hud-floating-tag {
    position: absolute;
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hud-floating-tag i { color: #4364f7; font-size: 10px; }
.hud-floating-tag.text-indigo i { color: #4f46e5; }

.tag-top-left { top: 24px; left: 20px; }
.tag-mid-left { top: 50%; left: 16px; transform: translateY(-50%); }
.tag-bottom-right { bottom: 24px; right: 20px; }

.methodology-main-title {
    font-size: 26px;
    font-weight: 800;
    color: #070f1e;
    margin: 0 0 35px 0;
    letter-spacing: -0.5px;
}

/* 6-Step Layout Track Grid Alignment */
.methodology-stepper-horizontal-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

.step-card-node {
    position: relative;
    display: flex;
    flex-direction: column;
}

.step-icon-shell {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f3ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 14px;
}

.step-meta-index {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 4px;
}

.step-heading-lbl {
    font-size: 12.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.step-desc-para {
    font-size: 11px;
    line-height: 1.4;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVENESS MATRICES
   ========================================================================== */
@media (max-width: 1400px) {
    .split-proposition-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .lead-generation-card-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .handdrawn-hint-annotation { display: none; }
    .micro-features-row-grid { grid-template-columns: repeat(2, 1fr); }
    .methodology-split-header-row { grid-template-columns: 1fr; gap: 40px; }
    .methodology-left-hero-image-block { height: 280px; }
    .methodology-stepper-horizontal-track { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 991.98px) {
    .embedded-metrics-strip-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .mini-counter-box { border-right: none; border-bottom: 1px solid #eaecf0; padding-bottom: 12px; }
    .mini-counter-box:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
    .canvas-container-fluid { padding: 0 20px; }
    .section-prime-headline { font-size: 32px; }
    .micro-features-row-grid { grid-template-columns: 1fr; }
    .embedded-metrics-strip-row { grid-template-columns: 1fr; }
    .methodology-stepper-horizontal-track { grid-template-columns: repeat(2, 1fr); }
    .approach-methodology-container-shelf { padding: 20px; }
}

@media (max-width: 480px) {
    .methodology-stepper-horizontal-track { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CYBERNETIC COCKPIT DELIVERY PLATFORM STYLING SHEET
   ========================================================================== */
.delivery-engine-section {
    background-color: #030712; /* Deep Obsidian Slate Canvas Tint */
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    transition: background-color 0.4s ease-in-out;
}

.engine-container-fluid {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 40px;
}

.delivery-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 50px;
    align-items: flex-start;
}

/* Typography Overrides */
.pill-context-badge {
    font-size: 11px;
    font-weight: 800;
    color: #a855f7; /* Brand purple tint */
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.prime-delivery-headline {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 20px 0;
}
.neon-purple-shimmer {
    color: #c084fc;
    text-shadow: 0 0 25px rgba(168, 85, 247, 0.35);
}

.delivery-lead-desc {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 0 45px 0;
}

/* Feature Row Splits & Live Tickers Box */
.features-feed-split-matrix {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    margin-bottom: 50px;
}

.workspace-features-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-interactive-row {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-interactive-row .f-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.f-icon-box.color-purple { background-color: rgba(168,85,247,0.1); color: #c084fc; }
.f-icon-box.color-green { background-color: rgba(34,197,94,0.1); color: #4ade80; }
.f-icon-box.color-orange { background-color: rgba(249,115,22,0.1); color: #fb923c; }
.f-icon-box.color-blue { background-color: rgba(59,130,246,0.1); color: #60a5fa; }

.f-text-box h6 {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px 0;
}
.f-text-box p {
    font-size: 11px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.arrow-indicator {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    transition: transform 0.2s;
}

/* Feature States on Hover */
.feature-interactive-row:hover, 
.feature-interactive-row.active {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.25);
}
.feature-interactive-row:hover .arrow-indicator,
.feature-interactive-row.active .arrow-indicator {
    transform: translateX(3px);
    color: #c084fc;
}

/* ==========================================================================
   DYNAMIC SCROLLING LIVE HUB COMPONENT
   ========================================================================== */
.live-activity-feed-panel {
    background-color: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.feed-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.feed-header-row h5 { font-size: 14px; font-weight: 800; color: #ffffff; margin: 0; }

.live-pulsing-tag {
    font-size: 10px;
    font-weight: 800;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pulse-dot {
    width: 6px; height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: beaconPulse 1.8s infinite ease-in-out;
}

.feed-scroller-viewport {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 190px;
}

.feed-activity-node-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    animation: itemSlideInFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.feed-activity-node-item:last-child { border-bottom: none; }

.user-avatar-shell {
    width: 28px; height: 28px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.feed-node-details p { font-size: 12px; color: #94a3b8; margin: 0; }
.feed-node-details strong { color: #ffffff; font-weight: 600; }
.feed-timestamp { font-size: 11px; color: #475569; margin-left: auto; }

.view-all-activities-link {
    margin-top: auto;
    font-size: 11.5px;
    font-weight: 700;
    color: #a855f7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: 14px;
    transition: gap 0.2s;
}
.view-all-activities-link:hover { gap: 10px; }

/* Dashboard Lower Horizontal Metrics Box */
.horizontal-dashboard-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 20px;
}
.metric-dashboard-cell { display: flex; align-items: center; gap: 14px; }
.metric-dashboard-cell .m-icon-wrapper { color: #6366f1; font-size: 18px; }
.m-data-wrap h4 { font-size: 20px; font-weight: 800; color: #ffffff; margin: 0; }
.m-data-wrap p { font-size: 10.5px; color: #64748b; margin: 0; line-height: 1.3; }

/* ==========================================================================
   3D VERTICAL FLOW PIPELINE METRICS
   ========================================================================== */
.right-workflow-pipeline-visualizer {
    background-color: rgba(10, 15, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.pipeline-badge-sticky-header {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}
.pipeline-badge-sticky-header i { color: #a855f7; }

.vertical-pipeline-interlock-track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* SVG Connection Paths */
.pipeline-svg-link-canvas {
    position: absolute;
    top: 30px; left: 0;
    width: 100%; height: calc(100% - 60px);
    pointer-events: none;
    z-index: 1;
}

.active-pulse-path {
    stroke-dasharray: 20, 150;
    animation: pipelineFlowStroke 4s linear infinite;
}

.pipeline-step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* 3D Hardware Capsule Node */
.hardware-capsule-button {
    width: 220px; height: 64px;
    background: linear-gradient(145deg, #1e1b4b 0%, #0f0e26 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.capsule-inner-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 13px;
    pointer-events: none;
    box-shadow: inset 0 0 12px rgba(168, 85, 247, 0);
    transition: box-shadow 0.3s ease;
}

.node-glyph { font-size: 18px; color: #64748b; transition: color 0.3s; }
.capsule-meta-info span { font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.3); display: block; }
.capsule-meta-info h5 { font-size: 13.5px; font-weight: 700; color: #ffffff; margin: 0; }

/* Horizontal Flow Status Label text */
.pipeline-status-label-card {
    width: 200px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 10px 14px;
}
.pipeline-status-label-card h6 { font-size: 12.5px; font-weight: 600; color: #94a3b8; margin: 0 0 4px 0; }

.status-indicator-badge {
    font-size: 10.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.status-indicator-badge.tag-done { color: #22c55e; }
.status-indicator-badge.tag-active-running { color: #3b82f6; }
.status-indicator-badge.tag-hold { color: #64748b; }

.live-blink-dot {
    width: 5px; height: 5px; background-color: #3b82f6; border-radius: 50%;
    animation: beaconPulse 1.2s infinite;
}

/* ==========================================================================
   DYNAMIC INTERACTION KEYFRAME HOVERS
   ========================================================================== */
.interact-node.node-active .hardware-capsule-button {
    transform: scale(1.04) translateX(5px);
    border-color: #a855f7;
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.25);
}
.interact-node.node-active .capsule-inner-glow {
    box-shadow: inset 0 0 14px rgba(168, 85, 247, 0.4);
}
.interact-node.node-active .node-glyph { color: #c084fc; }
.interact-node.node-active .pipeline-status-label-card {
    background-color: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}

/* Animations Profiles */
@keyframes beaconPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}
@keyframes pipelineFlowStroke {
    to { stroke-dashoffset: -170; }
}
@keyframes itemSlideInFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVENESS MEDIA queries
   ========================================================================== */
@media (max-width: 1200px) {
    .delivery-dashboard-grid { grid-template-columns: 1fr; gap: 60px; }
    .right-workflow-pipeline-visualizer { max-width: 600px; margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
    .features-feed-split-matrix { grid-template-columns: 1fr; }
    .horizontal-dashboard-metrics-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pipeline-step-row { flex-direction: column; gap: 12px; align-items: flex-start; }
    .pipeline-svg-link-canvas { display: none; }
    .hardware-capsule-button, .pipeline-status-label-card { width: 100%; }
}

/* ==========================================================================
   GLOBAL PARTNER ECOSYSTEM & MARQUEE MATRIX STYLING
   ========================================================================== */
.partner-matrix-viewport {
    background-color: #030712; /* Rich dark depth pattern matching previous dark section */
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.partner-matrix-container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Presentation Alignment */
.partner-header-layout {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px auto;
}

.partner-badge-utility {
    font-size: 11px;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.partner-prime-headline {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 18px 0;
}

.partner-lead-paragraph {
    font-size: 14.5px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

/* ==========================================================================
   INFINITE LINEAR MOTION LOGO MARQUEE TRACK
   ========================================================================== */
.marquee-infinite-container {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 65px;
    position: relative;
}

/* Soft Blur Overlay Vignettes for Cinematic Depth Fade */
.marquee-infinite-container::before,
.marquee-infinite-container::after {
    content: '';
    position: absolute;
    top: 0; width: 150px; height: 100%;
    z-index: 3;
    pointer-events: none;
}
.marquee-infinite-container::before { left: 0; background: linear-gradient(to right, #030712, transparent); }
.marquee-infinite-container::after { right: 0; background: linear-gradient(to left, #030712, transparent); }

.marquee-scroll-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: linearInfiniteMarquee 28s linear infinite;
}

.marquee-logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: #475569;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
}
.marquee-logo-item i {
    font-size: 26px;
}
.marquee-logo-item:hover {
    color: #ffffff;
    transform: scale(1.05);
}

@keyframes linearInfiniteMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   INTERACTIVE REVEAL MATRIX EXPANSION CARDS
   ========================================================================== */
.career-track-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.career-track-card {
    background-color: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hidden Dynamic Spotlight Radial Glow Field */
.card-bg-glow-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(59, 130, 246, 0.06), transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-inner-structural-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.track-icon-badge {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}
.track-icon-badge.color-cyan { background: rgba(6, 182, 212, 0.06); color: #06b6d4; }
.track-icon-badge.color-indigo { background: rgba(99, 102, 241, 0.06); color: #6366f1; }
.track-icon-badge.color-purple { background: rgba(168, 85, 247, 0.06); color: #a855f7; }

.card-inner-structural-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.track-description {
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 24px 0;
    transition: color 0.3s;
}

/* Accordion Style Collapsible Extra Shelf Component Layout */
.collapsible-extra-shelf {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
    padding-top: 0;
    margin-bottom: 0;
}

.shelf-title {
    font-size: 10.5px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.shelf-tags-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shelf-tags-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
}

/* Card Interactive Footer Action Rows */
.card-interactive-footer {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-trigger-text {
    font-size: 11.5px;
    font-weight: 700;
    color: #3b82f6;
    transition: color 0.3s;
}

.dynamic-percentage-loader {
    font-size: 14px;
    font-weight: 900;
    color: #475569;
    font-family: monospace;
    transition: color 0.3s;
}

/* State Modifier Triggers for Card Interaction Layers */
.career-track-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    background-color: #0d121f;
}

.career-track-card:hover .card-bg-glow-layer {
    opacity: 1;
}

.career-track-card:hover .track-description {
    color: #94a3b8;
}

/* Class toggle configured via JavaScript interaction layer */
.career-track-card.is-expanded {
    border-color: rgba(59, 130, 246, 0.3);
    background-color: #0b111e;
}

.career-track-card.is-expanded .collapsible-extra-shelf {
    max-height: 120px;
    opacity: 1;
    padding-top: 18px;
    margin-bottom: 8px;
}

.career-track-card.is-expanded .action-trigger-text {
    color: #a855f7;
}

.career-track-card.is-expanded .dynamic-percentage-loader {
    color: #22c55e;
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVENESS MATRICES (MOBILE & TABLET DOWN)
   ========================================================================== */
@media (max-width: 1200px) {
    .career-track-deck { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
    .partner-prime-headline { font-size: 26px; }
    .partner-matrix-container { padding: 0 20px; }
    .marquee-scroll-track { gap: 40px; }
    .marquee-logo-item { font-size: 18px; }
}

@media (max-width: 480px) {
    /* Touch Momentum Swiping Engine Enabled on Card deck viewports */
    .career-track-deck {
        display: flex;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .career-track-deck::-webkit-scrollbar { display: none; }
    
    .career-track-card {
        min-width: 290px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 24px 20px;
    }
}

/* ==========================================================================
   LIVE PROJECT WAR ROOM MODULE CONFIGURATION SHEET
   ========================================================================== */
.war-room-viewport {
    background-color: #f8fafc; /* Crisp hyper-clean canvas background mapping image_0c0e84.jpg */
    padding: 100px 0;
    width: 100%;
}

.war-room-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Grid Workspace Alignments */
.war-room-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.war-room-tagline {
    font-size: 12px;
    font-weight: 800;
    color: #4f46e5;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 14px;
}

.war-room-title {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 16px 0;
}

.gradient-text-accent {
    color: #4f46e5;
}

.war-room-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Feature Badge Accent Box Styling */
.embedded-ai-feature-box {
    background-color: #f1f5f9;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-radial {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #a855f7, #4f46e5);
    color: #ffffff;
    font-size: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-box-text h5 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.feature-box-text p {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

/* ==========================================================================
   HORIZONTAL FILTER STRIP HUB
   ========================================================================== */
.war-room-filter-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 40px;
    gap: 30px;
}

.filter-buttons-scroll-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.filter-buttons-scroll-track::-webkit-scrollbar { display: none; }

.war-filter-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.war-filter-btn i {
    font-size: 14px;
    color: #94a3b8;
    transition: color 0.25s;
}

.war-filter-btn:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.war-filter-btn.active {
    background-color: #4f46e5;
    border-color: #4f46e5;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}
.war-filter-btn.active i { color: #ffffff; }

.view-all-projects-anchor {
    font-size: 14px;
    font-weight: 700;
    color: #4f46e5;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 30px;
    background: #ffffff;
    transition: all 0.2s ease;
}
.view-all-projects-anchor:hover {
    background: #f8fafc;
    border-color: #4f46e5;
}

/* ==========================================================================
   DYNAMIC PROJECT WAR ROOM SHOWER DECK CARDS
   ========================================================================== */
.project-showcase-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.project-war-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.card-media-header {
    height: 180px;
    position: relative;
    overflow: hidden;
    background-color: #0f172a;
}

.card-cover-asset {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dynamic Live Status Labels Config */
.status-badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    z-index: 2;
}

.pulse-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
    display: inline-block;
    animation: simplePulse 1.4s infinite ease-in-out;
}

.progress-in-progress { background-color: #10b981; }
.progress-testing { background-color: #f59e0b; }
.progress-deploying { background-color: #3b82f6; }
.progress-review { background-color: #8b5cf6; }

@keyframes simplePulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.ai-badge-plus {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    z-index: 2;
}

/* Card Body Architecture Layout */
.card-body-metrics {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body-metrics h4 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.domain-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.industry-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
}
.industry-tag.color-purple { background: #f3e8ff; color: #7c3aed; }
.industry-tag.color-green { background: #dcfce7; color: #16a34a; }
.industry-tag.color-blue { background: #e0f2fe; color: #0369a1; }
.industry-tag.color-orange { background: #ffedd5; color: #ea580c; }

.separator-dot { font-size: 12px; color: #cbd5e1; }
.client-nature-text { font-size: 12px; font-weight: 600; color: #64748b; }

.project-summary-text {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0 0 20px 0;
}

/* Tech Stack & AI Sub-Structures Layout Row */
.stack-metric-block {
    margin-bottom: 16px;
}

.stack-metric-block h6 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
}

.stack-icons-flex {
    display: flex;
    gap: 14px;
    font-size: 18px;
    color: #64748b;
}

.ai-pill-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ai-tool-pill {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
}

/* Progress Filling Rail Components */
.progress-milestone-bar {
    margin-top: auto;
    padding-top: 14px;
    margin-bottom: 20px;
}

.progress-label-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 6px;
}

.progress-track-rail {
    width: 100%; height: 6px;
    background-color: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-fluid {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #818cf8);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stacking Avatars Team Grid Alignment footer */
.card-team-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avatar-stacked-group {
    display: flex;
    align-items: center;
}

.avatar-stacked-group img {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-right: -8px;
    position: relative;
    transition: transform 0.2s ease;
}
.avatar-stacked-group img:hover {
    transform: translateY(-4px);
    z-index: 10;
}

.avatar-overflow-count {
    width: 28px; height: 28px;
    border-radius: 50%;
    background-color: #f1f5f9;
    border: 2px solid #ffffff;
    color: #475569;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.team-member-total-count {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

/* Hover Micro-interactions across Cards */
.project-war-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.project-war-card:hover .card-cover-asset {
    transform: scale(1.05);
}

/* ==========================================================================
   METRIC HIGHLIGHT GROUND-FLOOR SHELF DESIGN
   ========================================================================== */
.war-room-metrics-shelf {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: 1fr 1.8fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

.shelf-brand-pitch {
    display: flex;
    gap: 16px;
    align-items: center;
}

.lightning-badge {
    width: 42px; height: 42px;
    background-color: #e0e7ff;
    color: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pitch-text h6 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.pitch-text p {
    font-size: 13px;
    line-height: 1.4;
    color: #64748b;
    margin: 0;
}

.shelf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    padding: 0 40px;
    text-align: center;
}

.stat-counter-tile h3 {
    font-size: 26px;
    font-weight: 900;
    color: #4f46e5;
    margin: 0 0 2px 0;
    font-family: system-ui, -apple-system, sans-serif;
}

.stat-counter-tile span {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.shelf-action-cta {
    text-align: right;
}

.war-room-cta-btn {
    background-color: #4f46e5;
    border: none;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.war-room-cta-btn:hover {
    background-color: #4338ca;
    transform: translateX(2px);
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVENESS MATRICES (MOBILE & TABLET DOWN)
   ========================================================================== */
@media (max-width: 1340px) {
    .project-showcase-matrix { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .war-room-metrics-shelf { grid-template-columns: 1fr; gap: 30px; padding: 30px; }
    .shelf-stats-grid { border-left: none; border-right: none; padding: 0; }
    .shelf-action-cta { text-align: center; }
}

@media (max-width: 991.98px) {
    .war-room-header { grid-template-columns: 1fr; gap: 24px; }
    .war-room-title { font-size: 30px; }
    .war-room-filter-strip { flex-direction: column; align-items: flex-start; gap: 20px; }
    .view-all-projects-anchor { width: 100%; justify-content: center; }
    .filter-buttons-scroll-track { width: 100%; padding-bottom: 4px; }
}

@media (max-width: 640px) {
    .project-showcase-matrix { grid-template-columns: 1fr; }
    .shelf-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .war-room-container { padding: 0 20px; }
    .war-room-viewport { padding: 60px 0; }
}


/* ==========================================================================
   INDUSTRY WORKFLOW SYSTEM TIMELINE CONFIGURATION MODULE
   ========================================================================== */
.lifecycle-viewport {
    background-color: #f8fafc;
    padding: 110px 0;
    width: 100%;
    overflow: hidden;
}

.lifecycle-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Sections Layout Split Base */
.lifecycle-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
}

.lifecycle-tagline {
    font-size: 12px;
    font-weight: 800;
    color: #4f46e5;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.lifecycle-title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 0 16px 0;
}

.lifecycle-title .accent-text {
    color: #4f46e5;
}

.lifecycle-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    max-width: 620px;
}

/* Feature Badge Config Box */
.ai-step-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.feature-card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff;
    font-size: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card-body h5 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.feature-card-body p {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0 0 14px 0;
}

.feature-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fpill {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

/* ==========================================================================
   INTERACTIVE LINEAR PIPELINE TIMELINE TRACK
   ========================================================================== */
.pipeline-navigation-wrap {
    position: relative;
    margin-bottom: 50px;
    padding: 20px 0;
}

.pipeline-progress-rail {
    position: absolute;
    top: 52px; left: 4%;
    width: 92%; height: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.pipeline-progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%; /* Driven via JS workflow Engine */
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pipeline-steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-nav-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    width: 130px;
}

.node-circle {
    width: 28px; height: 28px;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.node-icon {
    width: 54px; height: 54px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Node Icon Dynamic System Gradients mapping image_0bb4aa.jpg */
.icon-purple i { color: #8b5cf6; }
.icon-green i { color: #10b981; }
.icon-blue i { color: #3b82f6; }
.icon-indigo i { color: #6366f1; }
.icon-orange i { color: #f59e0b; }
.icon-sky i { color: #0ea5e9; }
.icon-emerald i { color: #059669; }

.node-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    line-height: 1.3;
    transition: color 0.3s;
}

/* Highlight Selected Target Node Styles */
.step-nav-node:hover .node-icon {
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.step-nav-node.active .node-circle {
    background-color: #4f46e5;
    border-color: #4f46e5;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.step-nav-node.active .node-icon {
    background-color: #ffffff;
    border-color: #4f46e5;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.08);
}

.step-nav-node.active .node-label {
    color: #0f172a;
}

/* ==========================================================================
   DYNAMIC PRESENTATION DECK DISPLAY PANELS
   ========================================================================== */
.lifecycle-panels-deck {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.01);
    position: relative;
    min-height: 180px;
}

.lifecycle-detail-panel {
    display: none;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.lifecycle-detail-panel.active {
    display: grid;
}

.lifecycle-detail-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.panel-main-info h4 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.panel-main-info p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.panel-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    border-left: 1px solid #f1f5f9;
    padding-left: 40px;
}

.meta-box h6 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.meta-box h6 i { font-size: 12px; }

.meta-box ul {
    margin: 0; padding: 0;
    list-style: none;
}

.meta-box ul li {
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.meta-box ul li::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background-color: #6366f1;
    display: inline-block;
}

.tool-tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tool-tag-pill {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

/* ==========================================================================
   METRIC PITCH GROUND SHELF DESIGN
   ========================================================================== */
.lifecycle-pitch-shelf {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 0.9fr 2.1fr;
    gap: 50px;
    align-items: center;
}

.pitch-intro-cell h5 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.pitch-intro-cell p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #64748b;
    margin: 0 0 20px 0;
}

.pitch-action-trigger {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #4f46e5;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.pitch-action-trigger:hover {
    border-color: #4f46e5;
    background-color: #f8fafc;
}

.pitch-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
    border-left: 1px solid #f1f5f9;
    padding-left: 50px;
}

.p-feature-tile {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tile-icon-avatar {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* Dynamic Context Tile Colored Mappings */
.purple-bg { background-color: #f3e8ff; color: #7c3aed; }
.green-bg { background-color: #dcfce7; color: #16a34a; }
.orange-bg { background-color: #ffedd5; color: #ea580c; }
.blue-bg { background-color: #e0f2fe; color: #0369a1; }
.violet-bg { background-color: #e0e7ff; color: #4f46e5; }

.tile-text h6 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.tile-text p {
    font-size: 12.5px;
    line-height: 1.4;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVENESS MATRICES (MOBILE SWIPEABLE DECK CARDS)
   ========================================================================== */
@media (max-width: 1200px) {
    .lifecycle-pitch-shelf { grid-template-columns: 1fr; gap: 40px; }
    .pitch-features-grid { border-left: none; padding-left: 0; }
}

@media (max-width: 991.98px) {
    .lifecycle-header { grid-template-columns: 1fr; gap: 30px; }
    .lifecycle-detail-panel { grid-template-columns: 1fr; gap: 30px; }
    .panel-meta-grid { border-left: none; padding-left: 0; }
    
    /* Turn Navigation Strip into a native Mobile Swipe Hub */
    .pipeline-navigation-wrap {
        overflow-x: auto;
        padding-bottom: 20px;
        scrollbar-width: none;
    }
    .pipeline-navigation-wrap::-webkit-scrollbar { display: none; }
    
    .pipeline-steps-container {
        width: max-content;
        gap: 16px;
    }
    .pipeline-progress-rail { display: none; }
    .step-nav-node { width: 150px; background: #ffffff; padding: 16px; border-radius: 12px; border: 1px solid #e2e8f0; }
    .step-nav-node.active { border-color: #4f46e5; }
}

@media (max-width: 640px) {
    .lifecycle-container { padding: 0 20px; }
    .lifecycle-viewport { padding: 60px 0; }
    .lifecycle-title { font-size: 28px; }
    .pitch-features-grid { grid-template-columns: 1fr; gap: 20px; }
    .lifecycle-panels-deck { padding: 24px; }
}

/* ==========================================================================
   DOMAIN MATRIX & TECHNICAL ROLE CARDS CONFIGURATION
   ========================================================================== */
.domain-matrix-section {
    background-color: #030712; /* Premium Deep Space Background */
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.domain-matrix-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Grid Section Typography */
.matrix-header-block {
    text-align: center;
    margin-bottom: 60px;
}

.matrix-pretitle {
    font-size: 12px;
    font-weight: 800;
    color: #6366f1;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.matrix-main-title {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0 0 16px 0;
}

.matrix-subtitle {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   HIGH-FIDELITY GLASSMOPHIC TAB CONTROL STRIP
   ========================================================================== */
.domain-tabs-nav-wrapper {
    position: relative;
    margin-bottom: 60px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.domain-tabs-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none; /* Hide default scrollbars */
}
.domain-tabs-track::-webkit-scrollbar { display: none; }

.domain-tab-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    min-width: 110px;
    flex-shrink: 0;
}

.tab-icon {
    font-size: 20px;
    color: #4b5563;
    transition: transform 0.3s ease, color 0.3s ease;
}

.tab-text {
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* Tab Interactive Hover states */
.domain-tab-btn:hover .tab-icon { color: #9ca3af; transform: translateY(-2px); }
.domain-tab-btn:hover .tab-text { color: #9ca3af; }

/* Selected Filter Active Tab Target */
.domain-tab-btn.active {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
}
.domain-tab-btn.active .tab-icon { color: #818cf8; transform: scale(1.1); }
.domain-tab-btn.active .tab-text { color: #ffffff; }

/* ==========================================================================
   ROLE COMPONENT MATRIX DISPLAY CARDS
   ========================================================================== */
.matrix-roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: all 0.4s ease;
}

.role-matrix-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease,
                opacity 0.35s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Structural Filtering Visibility States */
.role-matrix-card.filtered-out {
    opacity: 0.15;
    transform: scale(0.96) translateY(5px);
    pointer-events: none;
}

/* Ambient Inner Sheen Follow Spot-light Container */
.card-glass-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(99, 102, 241, 0.08), transparent 40%);
    z-index: 2;
    pointer-events: none;
}

/* Visual Background Overlay Layer */
.card-visual-backdrop {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.card-visual-backdrop img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: grayscale(100%) contrast(120%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* Content Frame Interface overlay */
.card-content-overlay {
    position: relative;
    z-index: 3;
    padding: 36px;
    width: 100%;
    background: linear-gradient(to top, #0b0f19 0%, rgba(11, 15, 25, 0.95) 60%, transparent 100%);
    transform: translateZ(20px); /* 3D Depth Layer Separation */
}

.role-tag-row { margin-bottom: 16px; }
.role-pill-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.role-pill-badge i { margin-right: 6px; font-size: 10px; color: #6366f1; }

.role-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.role-card-motto {
    font-size: 12px;
    font-weight: 800;
    color: #6366f1;
    letter-spacing: 1.5px;
    margin: 0 0 16px 0;
}

.role-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0 0 24px 0;
}

/* Interactive Action Trigger Linkages */
.role-explore-trigger {
    background: transparent;
    border: none; outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.role-explore-trigger i {
    font-size: 11px;
    color: #6366f1;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.role-explore-trigger:hover { color: #818cf8; }

/* Expandable Drawer Engine Configuration */
.capability-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.tech-stack-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.tech-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #a5b4fc;
}

.metric-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.5px;
}

.metric-bar-bg {
    width: 100%; height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #4f46e5);
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

/* Core Open Component Trigger Activations */
.role-matrix-card.drawer-active .capability-drawer {
    max-height: 160px;
}
.role-matrix-card.drawer-active .role-explore-trigger i {
    transform: rotate(180deg);
}
.role-matrix-card.drawer-active .metric-bar-fill {
    transform: scaleX(1);
}

/* Card Comprehensive Element Hover Upgrades */
.role-matrix-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.05);
}
.role-matrix-card:hover .card-visual-backdrop img {
    transform: scale(1.08);
    opacity: 0.22;
}

/* ==========================================================================
   GRID ARCHITECTURE BREAKPOINTS RESPONSIVENESS MATRICES
   ========================================================================== */
@media (max-width: 1200px) {
    .matrix-roles-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 991.98px) {
    /* Translate Nav strip into fluid touch-swipeable system interface */
    .domain-tabs-nav-wrapper {
        background: transparent;
        border: none;
        padding: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .domain-tabs-track {
        padding: 4px 0;
        gap: 10px;
    }
    .domain-tab-btn {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 16px;
        border-radius: 16px;
        min-width: 130px;
    }
}

@media (max-width: 768px) {
    .matrix-roles-grid { grid-template-columns: 1fr; gap: 20px; }
    .matrix-main-title { font-size: 30px; }
    .card-content-overlay { padding: 28px; }
}

@media (max-width: 480px) {
    .domain-matrix-container { padding: 0 20px; }
    .domain-matrix-section { padding: 70px 0; }
}

/* ==========================================================================
   DAILY WORKSPACE HUB SYSTEM ARCHITECTURE STYLING
   ========================================================================== */
.daily-workspace-section {
    background-color: #0b0f19; /* Ultra Deep Dark Aesthetic */
    padding: 120px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.daily-workspace-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Split Header Architecture Alignment */
.workspace-header-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.workspace-tag {
    font-size: 11px;
    font-weight: 800;
    color: #818cf8;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.workspace-title {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 0 16px 0;
}

.workspace-title .purple-neon-text {
    color: #6366f1;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.workspace-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
    max-width: 600px;
}

/* Glassmorphic Integrated Feature Information Card */
.glass-embedded-alert {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    gap: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.alert-pulse-icon {
    width: 46px; height: 46px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #a5b4fc;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: boxPulseGlow 3s infinite ease-in-out;
}

@keyframes boxPulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 0 15px 4px rgba(99, 102, 241, 0.4); }
}

.alert-body h6 {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.alert-body p {
    font-size: 13px;
    line-height: 1.5;
    color: #9ca3af;
    margin: 0 0 16px 0;
}

.alert-pill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.alert-pill-badges span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
}

/* ==========================================================================
   INTERACTIVE HORIZONTAL SPRINT TRACK RAIL
   ========================================================================== */
.time-track-navigation-wrap {
    position: relative;
    margin-bottom: 60px;
    padding: 20px 0;
}

.time-progress-rail-bg {
    position: absolute;
    top: 56px; left: 5%;
    width: 90%; height: 2px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 1;
}

.time-progress-fill-line {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%; /* Altered programmatically via Javascript Timeline Engine */
    background: linear-gradient(90deg, #6366f1, #d946ef);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.time-nodes-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.time-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 140px;
    text-align: center;
}

.node-hour-lbl {
    font-size: 12px;
    font-weight: 800;
    color: #4b5563;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.node-connector-dot {
    width: 10px; height: 10px;
    background-color: #1f2937;
    border: 2px solid #4b5563;
    border-radius: 50%;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.node-avatar-badge {
    width: 48px; height: 48px;
    background-color: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.node-task-title {
    font-size: 13px;
    font-weight: 700;
    color: #4b5563;
    line-height: 1.3;
    transition: color 0.3s;
}

/* Hover and Click Selection States Matrix */
.time-step-node:hover .node-avatar-badge {
    border-color: rgba(255, 255, 255, 0.2);
    color: #9ca3af;
    transform: translateY(-2px);
}

.time-step-node.active .node-hour-lbl { color: #ffffff; }
.time-step-node.active .node-task-title { color: #ffffff; }

.time-step-node.active .node-connector-dot {
    background-color: #6366f1;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.25);
    transform: scale(1.2);
}

.time-step-node.active .node-avatar-badge {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-color: #6366f1;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* ==========================================================================
   SLIDER VIEWPORT CARDS CONTENT CONTAINER
   ========================================================================== */
.workspace-slider-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 60px;
}

.workspace-slider-ribbon {
    display: flex;
    width: 600%; /* Calculated exactly based on 6 individual process step items */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.workspace-display-card {
    width: 16.666667%; /* 100% split evenly across 6 blocks */
    flex-shrink: 0;
    padding: 44px;
}

.card-inner-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

/* ==========================================================================
   VIRTUAL LIVE APPLICATION MOCK PANES VISUAL INTERFACES
   ========================================================================== */
.card-visual-pane {
    background-color: #070a13;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    min-height: 280px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Interface 1: Conference Grid Layout */
.mock-video-conference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
}
.avatar-cell {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar-cell img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid #6366f1; }
.avatar-cell span { font-size: 12px; font-weight: 700; color: #e5e7eb; }

/* Interface 2: Scrum Board Column Blocks */
.mock-scrum-kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}
.kanban-col h6 { font-size: 11px; font-weight: 800; color: #4b5563; text-transform: uppercase; margin: 0 0 10px 0; }
.k-item { background: rgba(255,255,255,0.02); padding: 10px; border-radius: 8px; font-size: 11px; color: #9ca3af; border-left: 2px solid #4b5563; margin-bottom: 6px; }
.k-item.active { background: rgba(99, 102, 241, 0.05); border-left-color: #6366f1; color: #ffffff; font-weight: bold; }
.k-item.done { text-decoration: line-through; opacity: 0.4; border-left-color: #10b981; }

/* Interface 3: Live IDE Screen Layout */
.mock-ide-terminal-window {
    width: 100%;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 12px;
}
.ide-header { display: flex; gap: 6px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 12px; margin-bottom: 14px; }
.ide-header span[class^="dot-"] { width: 8px; height: 8px; border-radius: 50%; }
.dot-r { background-color: #ef4444; } .dot-y { background-color: #f59e0b; } .dot-g { background-color: #10b981; }
.tab-lbl { color: #4b5563; font-size: 11px; margin-left: 4px; font-weight: bold; }
.mock-ide-terminal-window pre { margin: 0; color: #9ca3af; line-height: 1.5; }
.keyword { color: #c084fc; } .fn { color: #60a5fa; } .comment { color: #4b5563; }

/* Interface 4: Quality Metrics Graphics Display */
.mock-qa-analytics-dashboard { width: 100%; text-align: center; }
.qa-stat-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; }
.qa-badge { padding: 6px 14px; border-radius: 6px; font-size: 11px; font-weight: bold; }
.qa-badge.passed { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.qa-badge.failed { background: rgba(239, 68, 68, 0.1); color: #f87171; }
.qa-radial-chart-box { font-size: 14px; font-weight: bold; color: #ffffff; }

/* Interface 5: Deployment Pipelines */
.mock-devops-pipeline-tree { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.tree-node { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 12px 16px; border-radius: 10px; font-size: 12px; display: flex; align-items: center; gap: 10px; }
.tree-node.pass i { color: #10b981; }
.tree-node.running i { color: #6366f1; }

/* Interface 6: Delivery Insights Graphs Mapping */
.mock-review-analytics-summary { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.metric-score-row { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.01); padding: 14px; border-radius: 8px; }
.metric-score-row h5 { font-size: 13px; color: #9ca3af; margin: 0; }
.metric-score-row strong { font-size: 14px; color: #a5b4fc; }

/* ==========================================================================
   SLIDER CARD TEXT PANEL HIGHLIGHTS LAYOUT
   ========================================================================== */
.ai-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.card-text-pane h4 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.panel-narrative {
    font-size: 14.5px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0 0 24px 0;
}

.bullet-highlights {
    margin: 0; padding: 0;
    list-style: none;
}

.bullet-highlights li {
    font-size: 13.5px;
    color: #d1d5db;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.bullet-highlights li::before {
    content: "⚡";
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   INTEGRATED SYSTEM CO-PILOT TOOLBAR GROUND SHELF
   ========================================================================== */
.toolbelt-wrapper-shelf {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 30px 40px;
}

.toolbelt-title-indicator {
    font-size: 11px;
    font-weight: 800;
    color: #4b5563;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 24px;
}

.toolbelt-grid-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}
.toolbelt-grid-flex::-webkit-scrollbar { display: none; }

.tool-brand-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.tool-brand-item:hover {
    transform: translateY(-2px);
}

.brand-avatar-box {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Structural Tool Color Signatures */
.color-indigo { background-color: rgba(99, 102, 241, 0.1); color: #818cf8; }
.color-green { background-color: rgba(16, 185, 129, 0.1); color: #34d399; }
.color-dark { background-color: rgba(255, 255, 255, 0.05); color: #ffffff; }
.color-purple { background-color: rgba(192, 132, 252, 0.1); color: #c084fc; }
.color-blue { background-color: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.color-red { background-color: rgba(239, 68, 68, 0.1); color: #f87171; }

.brand-text-lbl h6 { font-size: 13px; font-weight: 800; color: #ffffff; margin: 0 0 2px 0; }
.brand-text-lbl p { font-size: 11px; color: #4b5563; margin: 0; font-weight: 500; }

/* ==========================================================================
   BREAKPOINTS RESPONSIVENESS CAPABILITIES ARCHITECTURE
   ========================================================================== */
@media (max-width: 1200px) {
    .card-inner-split { grid-template-columns: 1fr; gap: 40px; }
    .card-visual-pane { min-height: 220px; }
    .toolbelt-grid-flex { gap: 30px; }
}

@media (max-width: 991.98px) {
    .workspace-header-row { grid-template-columns: 1fr; gap: 30px; }
    
    /* Convert step layout tracks into native horizontal wheel modules on mobile views */
    .time-track-navigation-wrap {
        overflow-x: auto;
        padding-bottom: 16px;
        scrollbar-width: none;
    }
    .time-track-navigation-wrap::-webkit-scrollbar { display: none; }
    
    .time-nodes-container {
        width: max-content;
        gap: 14px;
        padding: 0 4px;
    }
    .time-progress-rail-bg { display: none; }
    .time-step-node {
        width: 144px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.04);
        padding: 16px;
        border-radius: 16px;
    }
    .time-step-node.active { border-color: #6366f1; }
    .node-hour-lbl { margin-bottom: 6px; }
    .node-connector-dot { display: none; }
    .node-avatar-badge { margin-bottom: 8px; }
}

@media (max-width: 640px) {
    .daily-workspace-container { padding: 0 20px; }
    .daily-workspace-section { padding: 70px 0; }
    .workspace-title { font-size: 28px; }
    .workspace-display-card { padding: 24px; }
}

/* ==========================================================================
   THE JOURNEY METRIC ROADMAP - PREMIUM ARCHITECTURE
   ========================================================================== */
.delivery-journey-section {
    background-color: #070a13; /* Deep Slate Void Aesthetic */
    padding: 120px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.journey-matrix-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Grid Layout Architecture */
.journey-header-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.journey-mini-tag {
    font-size: 11px;
    font-weight: 800;
    color: #a5b4fc;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.journey-main-heading {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 0 18px 0;
}

.journey-main-heading .gradient-neon-glow {
    background: linear-gradient(90deg, #6366f1, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.journey-lead-text {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
    max-width: 620px;
}

/* Futuristic Premium Glass Capsule Panel */
.feature-glass-capsule {
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.00) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    gap: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.capsule-icon-box {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(217,70,239,0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 14px;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capsule-content-box h5 {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.capsule-content-box p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #9ca3af;
    margin: 0 0 18px 0;
}

.capsule-tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.capsule-tags-flex .active-pill {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #c7d2fe;
}

/* ==========================================================================
   DYNAMIC STEPPER SVG ROADMAP STRUCTURE
   ========================================================================== */
.roadmap-track-wrapper {
    position: relative;
    margin-bottom: 50px;
    padding: 30px 0;
}

.roadmap-svg-connector {
    position: absolute;
    top: 92px;
    left: 10%;
    width: 80%;
    height: 6px;
    z-index: 1;
    overflow: visible;
}

.base-path-line {
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 4px;
    stroke-linecap: round;
}

.animated-laser-line {
    stroke: url(#laserGradient);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000; /* Controlled programmatically via script.js */
    transition: stroke-dashoffset 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Fallback pure line color match vector for standard SVG renders */
#journeyLaserFill {
    stroke: #6366f1;
}

.roadmap-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Dynamic Interactive Milestone Identity Cards */
.journey-step-card {
    background: rgba(13, 18, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 30px 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-badge-indicator {
    position: absolute;
    top: 24px; right: 24px;
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.card-graphic-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-step-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #4b5563;
    margin: 0 0 10px 0;
    transition: color 0.3s;
}

.step-description {
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0 0 24px 0;
    transition: color 0.3s;
}

.step-ai-chips-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.3;
    transition: opacity 0.4s;
}

.ai-chip-node {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 700;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   STATE CLASSES FOR ACTIVATED TIMELINE BLOCK MILESTONES
   ========================================================================== */
.journey-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.08);
}

.journey-step-card.active {
    background: rgba(17, 24, 39, 0.7);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.journey-step-card.active .step-badge-indicator {
    color: #6366f1;
}

.journey-step-card.active .card-graphic-circle {
    background: linear-gradient(135deg, #6366f1, #d946ef);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.journey-step-card.active h3 { color: #ffffff; }
.journey-step-card.active .step-description { color: #9ca3af; }
.journey-step-card.active .step-ai-chips-group { opacity: 1; }

.journey-step-card.active .ai-chip-node {
    background: rgba(99, 102, 241, 0.03);
    border-color: rgba(99, 102, 241, 0.12);
    color: #c7d2fe;
}

/* ==========================================================================
   OUTCOME BANNER SHELF & ANALYTICS COUNTERS
   ========================================================================== */
.journey-outcome-strip {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
}

.outcome-pulse-dot {
    width: 6px; height: 6px;
    background-color: #d946ef;
    border-radius: 50%;
    box-shadow: 0 0 10px #d946ef;
    animation: simplePulse 2s infinite ease-in-out;
}

@keyframes simplePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.journey-outcome-strip p {
    font-size: 13px;
    font-weight: 700;
    color: #9ca3af;
    margin: 0;
    letter-spacing: 0.5px;
}

.journey-outcome-strip .highlight-purple {
    color: #d946ef;
}

/* Live Analytics Numerical Counter Row */
.journey-metrics-shelf {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 34px;
}

.metrics-grid-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.metric-block-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-icon-box {
    width: 42px; height: 42px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 10px;
    color: #818cf8;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon-box.color-alt-orange { background: rgba(245, 158, 11, 0.08); color: #fbbf24; }
.metric-icon-box.color-alt-cyan { background: rgba(6, 182, 212, 0.08); color: #22d3ee; }

.metric-text-box h4 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2px 0;
    letter-spacing: -0.5px;
}

.metric-text-box p {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVENESS AND DEVICE SCALING SYSTEM
   ========================================================================== */
@media (max-width: 1300px) {
    .roadmap-cards-row { gap: 16px; }
    .journey-step-card { padding: 24px 16px; }
    .metrics-grid-layout { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 991.98px) {
    .journey-header-grid { grid-template-columns: 1fr; gap: 40px; }
    .roadmap-svg-connector { display: none; }
    
    /* Smooth native carousel swipe layout architecture for mobile devices */
    .roadmap-track-wrapper {
        overflow-x: auto;
        margin-left: -20px;
        margin-right: -20px;
        padding: 10px 20px 24px 20px;
        scrollbar-width: none;
        snap-type: x mandatory;
    }
    .roadmap-track-wrapper::-webkit-scrollbar { display: none; }

    .roadmap-cards-row {
        display: flex;
        width: max-content;
        gap: 16px;
    }

    .journey-step-card {
        width: 280px;
        snap-align: start;
        background: rgba(17, 24, 39, 0.6);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    /* Maintain fully active visibility state markers across all nodes on touch wheels */
    .journey-step-card h3 { color: #ffffff; }
    .journey-step-card .step-description { color: #9ca3af; }
    .journey-step-card .step-ai-chips-group { opacity: 1; }
    .journey-step-card .card-graphic-circle { color: #ffffff; background: rgba(255,255,255,0.02); }
    .journey-step-card.active .card-graphic-circle { background: linear-gradient(135deg, #6366f1, #d946ef); }
}

@media (max-width: 640px) {
    .journey-matrix-container { padding: 0 20px; }
    .delivery-journey-section { padding: 70px 0; }
    .journey-main-heading { font-size: 30px; }
    .metrics-grid-layout { grid-template-columns: 1fr; gap: 24px; }
    .journey-metrics-shelf { padding: 24px; }
}

/* ==========================================================================
   WORK ACROSS ALL DOMAINS - DARK FUTURISTIC THEME
   ========================================================================== */
.domain-matrix-section {
    background-color: #030712; /* Deep Obsidian Slate */
    padding: 100px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.matrix-layout-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header Typography */
.matrix-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.matrix-main-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 4px;
    margin: 0 0 16px 0;
    position: relative;
}

.header-divider-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #ec4899);
    margin: 0 auto;
    border-radius: 2px;
}

/* ==========================================================================
   NAVIGATION BAR WITH GLASSMORPHISM AESTHETICS
   ========================================================================== */
.domain-navbar-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 60px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.domain-nav-scroll-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox layout hide track hook */
}

.domain-nav-scroll-container::-webkit-scrollbar {
    display: none; /* Safari/Chrome layout hide track hook */
}

.domain-nav-item {
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 12px;
    flex: 1;
    min-width: 120px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-icon-wrapper {
    font-size: 20px;
    color: #6b7280;
    transition: transform 0.3s, color 0.3s;
}

.domain-nav-item span {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    white-space: nowrap;
    transition: color 0.3s;
}

/* Nav Item Hover States */
.domain-nav-item:hover .nav-icon-wrapper,
.domain-nav-item:hover span {
    color: #9ca3af;
}

/* Nav Item Active Dynamic Glow States */
.domain-nav-item.active {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.domain-nav-item.active .nav-icon-wrapper {
    color: #ff4500; /* Vibrant Alert Accent Core */
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(255, 69, 0, 0.6);
}

.domain-nav-item.active span {
    color: #ffffff;
}

/* ==========================================================================
   ROLE VIEWPORT & HORIZONTAL CAROUSEL TRACK
   ========================================================================== */
.role-cards-viewport {
    width: 100%;
    position: relative;
}

.role-cards-slider-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    perspective: 1000px; /* Activates 3D spacing parameters */
}

/* Fade animation state triggered by Javascript shifts */
.role-cards-slider-track.switching {
    opacity: 0;
    transform: translateY(15px);
}

/* Premium Perspective Showcase Card Design */
.role-showcase-card {
    height: 400px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-color: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transform-style: preserve-3d;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.card-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?q=80&w=600'); /* High tech terminal fallback stream */
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: luminosity;
    transition: opacity 0.5s, transform 0.5s;
}

/* Continuous gradient shade configuration layered on top of image stream backgrounds */
.role-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,7,18,0) 20%, rgba(3,7,18,0.95) 85%);
    z-index: 1;
}

.card-inner-content {
    position: absolute;
    inset: 0;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    transform: translateZ(30px); /* Pushes elements outward along the Z-axis */
}

.role-meta-tag {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.role-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.role-action-text {
    font-size: 12px;
    font-weight: 700;
    color: #38bdf8; /* Neon blue cyan glow tracking marker */
    letter-spacing: 1px;
    margin: 0;
    transition: transform 0.4s, opacity 0.4s;
}

/* Interactive Slidedown Drawer Panel */
.role-hover-drawer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
}

.role-skill-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
}

.role-explore-btn {
    width: 100%;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.role-explore-btn i {
    transition: transform 0.3s;
}

/* ==========================================================================
   DYNAMIC INTERACTION & TRANSITION EFFECTS ON HOVER
   ========================================================================== */
.role-showcase-card:hover {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.05);
}

.role-showcase-card:hover .card-bg-overlay {
    opacity: 0.3;
    transform: scale(1.05);
}

.role-showcase-card:hover .role-action-text {
    transform: translateY(-5px);
    opacity: 0;
}

.role-showcase-card:hover .role-hover-drawer {
    max-height: 120px;
    opacity: 1;
    padding-top: 12px;
}

.role-showcase-card:hover .role-explore-btn i {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVENESS AND DEVICE DISPLAY LAYOUTS
   ========================================================================== */
@media (max-width: 1400px) {
    .role-cards-slider-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .role-cards-slider-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .matrix-layout-container { padding: 0 20px; }
    .domain-matrix-section { padding: 70px 0; }
    
    /* Native Horizontal Swipe Slider Mechanics for Mobile Displays */
    .role-cards-viewport {
        overflow-x: auto;
        margin-left: -20px;
        margin-right: -20px;
        padding: 10px 20px 30px 20px;
        scrollbar-width: none;
        snap-type: x mandatory;
    }
    .role-cards-viewport::-webkit-scrollbar { display: none; }

    .role-cards-slider-track {
        display: flex;
        width: max-content;
        gap: 16px;
    }

    .role-showcase-card {
        width: 290px;
        height: 380px;
        snap-align: start;
    }
    
    /* Reveal card configurations immediately on touch-enabled device wheels */
    .role-action-text { display: none; }
    .role-hover-drawer { max-height: 120px; opacity: 1; padding-top: 12px; }
}

/* ==========================================================================
   BLUEPRINT COMPLIANT REQUIREMENT VAULT STYLES
   ========================================================================== */
.requirement-vault-section {
    background-color: #ffffff; /* Matches white theme canvas background layer from image_0b9dac.jpg */
    padding: 120px 0 60px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

.vault-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Space Dust Particles Layer */
.space-dust-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 80% 40%, rgba(147, 51, 234, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(56, 189, 248, 0.03) 0%, transparent 40%);
}

/* ==========================================================================
   LEFT PANEL - TYPOGRAPHY & INTERACTIVE ROW PILLS
   ========================================================================== */
.vault-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #a855f7;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vault-headline {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
}

.gradient-glow-text {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vault-description {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    max-width: 540px;
    margin: 0 0 40px 0;
}

/* Functional Feature Rows Stack */
.vault-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 45px;
}

.v-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-feature-item:hover {
    transform: translateX(6px);
}

.v-feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Accurate Neon Accent Glow Maps */
.pink-glow i { color: #ec4899; }
.blue-glow i { color: #3b82f6; }
.purple-glow i { color: #a855f7; }
.cyan-glow i { color: #06b6d4; }
.green-glow i { color: #10b981; }

.v-feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.v-feature-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* High-Fidelity CTA Button with Slide Fill Trigger */
.explore-vault-cta {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 6px 6px 6px 24px;
    background: #0f172a;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.explore-vault-cta span {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    z-index: 2;
}

.cta-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
    z-index: 2;
}

.explore-vault-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.explore-vault-cta:hover .cta-icon-wrapper {
    transform: rotate(-45deg);
    background: #a855f7;
    color: #ffffff;
}

/* ==========================================================================
   RIGHT PANEL - INTERACTIVE 3D VAULT DEVICE MACHINE
   ========================================================================== */
.vault-visual-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}

.orbiting-universe-viewport {
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Planetary Orbit Overlay Tracks */
.orbit-path {
    position: absolute;
    border: 1px dashed rgba(168, 85, 247, 0.15);
    border-radius: 50%;
    pointer-events: none;
}
.path-outer { width: 460px; height: 460px; animation: rotatingTrack 80s linear infinite; }
.path-inner { width: 340px; height: 340px; animation: rotatingTrack 40s linear reverse infinite; }

/* Dynamic Floating Industry Category Tags */
.floating-industry-pill {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.06);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, color 0.3s, border-color 0.3s;
}

.floating-industry-pill i {
    font-size: 14px;
    color: #a855f7;
}

.floating-industry-pill:hover {
    background: #ffffff;
    transform: scale(1.08) translate3d(0, -4px, 0) !important;
    border-color: #a855f7;
    box-shadow: 0 12px 28px rgba(168, 85, 247, 0.15);
}

.floating-industry-pill.active-pulse {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
}

.floating-industry-pill.active-pulse i {
    color: #ffffff;
}

/* Center Glassmorphic Mechanical Safe Cylinder Vault */
.chrome-vault-machine {
    width: 260px;
    height: 260px;
    border-radius: 55px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border: 6px solid #ffffff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15), 
                inset 0 -10px 20px rgba(0,0,0,0.05),
                inset 0 10px 20px #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hyper-Realistic Internal Viewing Terminal Chamber Window */
.vault-glass-visor {
    width: 210px;
    height: 210px;
    border-radius: 42px;
    background: linear-gradient(135deg, #1e1b4b 0%, #030712 100%);
    border: 3px solid #94a3b8;
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.8);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vault-internal-matrix {
    padding: 20px;
    text-align: center;
    width: 100%;
}

.matrix-secure-lock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.matrix-secure-lock i {
    font-size: 32px;
    color: #c084fc;
    text-shadow: 0 0 15px rgba(192, 132, 252, 0.6);
    animation: lockGlowPulse 2s ease-in-out infinite;
}

.matrix-secure-lock span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.matrix-secure-lock small {
    font-size: 10px;
    color: #94a3b8;
}

/* Mechanical Combination Rotating Wheel Central Node Configuration */
.mechanical-locking-wheel {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15), inset 0 2px 4px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9;
    right: -20px;
    bottom: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wheel-notch {
    position: absolute;
    width: 4px;
    height: 10px;
    background: #94a3b8;
    border-radius: 2px;
}
.wheel-notch:nth-child(1) { top: 2px; left: 50%; transform: translateX(-50%); }
.wheel-notch:nth-child(2) { bottom: 2px; left: 50%; transform: translateX(-50%); }
.wheel-notch:nth-child(3) { left: 2px; top: 50%; transform: translateY(-50%) rotate(90deg); }
.wheel-notch:nth-child(4) { right: 2px; top: 50%; transform: translateY(-50%) rotate(90deg); }

.wheel-center-bolt {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #94a3b8;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Scattered Floating Contextual Documents Architecture Blueprint */
.floating-doc {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.12);
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
    z-index: 6;
    animation: gentleFloat 6s ease-in-out infinite;
}

.doc-badge-pdf {
    background: #ef4444;
    color: #ffffff;
    font-size: 8px;
    font-weight: 900;
    padding: 2px 5px;
    border-radius: 4px;
    width: max-content;
}

.doc-meta-title {
    font-size: 11px;
    font-weight: 700;
    color: #334155;
}

.doc-line-skeleton {
    height: 4px;
    width: 70px;
    background: #e2e8f0;
    border-radius: 2px;
}
.doc-line-skeleton.short { width: 45px; }

/* Float Alignment Positioning Anchors */
.doc-srs { top: 60px; left: 20px; animation-delay: 0s; }
.doc-stories { bottom: 80px; left: 40px; animation-delay: 1.5s; }
.doc-frd { bottom: 100px; right: 10px; animation-delay: 3s; }
.doc-feedback { top: 80px; right: 30px; animation-delay: 4.5s; }

.rating-stars-row { font-size: 10px; color: #f59e0b; }

/* ==========================================================================
   METRICS DASHBOARD BAND LAYOUT COMPONENT
   ========================================================================== */
.vault-metrics-band {
    max-width: 1440px;
    margin: 40px auto 0 auto;
    padding: 0 60px;
}

.metrics-band-inner {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.metric-cell {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}
.metric-cell:first-child { justify-content: flex-start; }
.metric-cell:last-child { justify-content: flex-end; }

.metric-icon {
    font-size: 24px;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-data-block h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.metric-data-block p {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* ==========================================================================
   ANIMATIONS CORE KEYFRAMES
   ========================================================================== */
@keyframes rotatingTrack {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes lockGlowPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (MOBILE, DESKTOP)
   ========================================================================== */
@media (max-width: 1200px) {
    .vault-container { grid-template-columns: 1fr; gap: 60px; }
    .vault-info-column { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .vault-description { max-width: 600px; }
    .vault-features-list { align-items: flex-start; text-align: left; }
    .metrics-band-inner { padding: 24px; flex-wrap: wrap; gap: 24px; }
    .metric-cell { min-width: 200px; justify-content: center !important; }
    .metric-divider { display: none; }
}

@media (max-width: 768px) {
    .requirement-vault-section { padding: 60px 0; }
    .vault-container { padding: 0 24px; }
    .vault-headline { font-size: 30px; }
    .vault-visual-column { height: 420px; }
    .orbiting-universe-viewport { transform: scale(0.8); }
    .vault-metrics-band { padding: 0 24px; margin-top: 20px; }
    .metrics-band-inner { border-radius: 16px; padding: 20px; }
    .metric-cell { min-width: 100%; justify-content: flex-start !important; }
}

/* ==========================================================================
   BLUEPRINT COMPLIANT AI COPILOT COMMAND CENTER STYLES
   ========================================================================== */
.command-center-section {
    background-color: #020617; /* Exact Dark Space theme canvas from image_0b47aa.jpg */
    padding: 120px 0 60px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Background Atmospheric Environmental Maps */
.cyber-grid-bg {
    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: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.neon-pulse-glow-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.neon-pulse-glow-orb-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.command-center-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* ==========================================================================
   LEFT SECTION TYPOGRAPHY & ROW LABELS 
   ========================================================================== */
.cc-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #a855f7;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cc-headline {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
}

.purple-highlight-text {
    color: #a855f7;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.cc-description {
    font-size: 16px;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 540px;
    margin: 0 0 40px 0;
}

/* Feature Rows List Array Stack */
.cc-features-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
}

.cc-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc-feature-row:hover {
    transform: translateX(6px);
}

.cc-icon-pill {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #c084fc;
    flex-shrink: 0;
    margin-top: 2px;
}

.cc-feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.cc-feature-text p {
    font-size: 13px;
    line-height: 1.5;
    color: #94a3b8;
    margin: 0;
}

/* Primary Capsule CTA Trigger */
.cc-primary-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 6px 6px 6px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.cc-primary-cta-btn span {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.cc-arrow-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.cc-primary-cta-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.03);
    border-color: #a855f7;
}

.cc-primary-cta-btn:hover .cc-arrow-circle {
    transform: translateX(2px);
    background: #a855f7;
    color: #ffffff;
}

/* ==========================================================================
   RIGHT SECTION INTERACTIVE REACTOR ORBIT STAGE
   ========================================================================== */
.cc-visual-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 550px;
}

.cc-interactive-universe-stage {
    width: 480px;
    height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Central Deep Purple Reactor Engine Core */
.ai-reactor-core {
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reactor-outer-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
    animation: rotateClockwise 25s linear infinite;
}

.reactor-mid-ring {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.3);
    border-top-color: #a855f7;
    border-bottom-color: #6366f1;
    animation: rotateCounterClockwise 15s linear infinite;
}

.reactor-inner-plasma {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, #c084fc 0%, #7e22ce 70%);
    box-shadow: 0 0 50px #a855f7, inset 0 0 20px rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plasma-text {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* High Fidelity Floating Integration Orbit Nodes Map */
.ai-orbit-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.node-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #94a3b8;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.node-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    background: rgba(15, 23, 42, 0.6);
    padding: 3px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    white-space: nowrap;
    transition: all 0.3s;
}

/* Active Hover Highlight Mapping Matrices */
.ai-orbit-node:hover .node-icon-wrapper,
.ai-orbit-node.node-highlighted .node-icon-wrapper {
    color: #ffffff;
    background: #a855f7;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    transform: scale(1.1);
}

.ai-orbit-node:hover .node-label,
.ai-orbit-node.node-highlighted .node-label {
    color: #ffffff;
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

/* Floating Status Telemetry Right Widget Box Layout */
.ai-command-status-widget {
    position: absolute;
    width: 175px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
    right: -40px;
    top: 60px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 12;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    pointer-events: none;
    animation: gentleWobble 6s ease-in-out infinite;
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.75px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 6px;
}

.status-pulse-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulseDotOpacity 1.5s infinite;
}

.widget-telemetry-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.telemetry-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.t-label {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
}

.t-status.status-active {
    font-size: 8px;
    font-weight: 800;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 1px 5px;
    border-radius: 4px;
}

/* ==========================================================================
   PANORAMIC GLASS DASHBOARD DECK MAPPING
   ========================================================================== */
.cc-panoramic-dashboard-deck {
    max-width: 1440px;
    margin: 50px auto 0 auto;
    padding: 0 60px;
}

.dashboard-deck-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.8fr 1fr 0.9fr;
    gap: 16px;
    width: 100%;
}

.glass-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 145px;
}

.widget-title-bar {
    font-size: 9px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Widget Left Screen Details */
.graph-placeholder-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.activity-curve-svg {
    width: 100%;
    height: auto;
}
.graph-metrics-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.graph-metrics-footer div { display: flex; flex-direction: column; }
.graph-metrics-footer small { font-size: 9px; color: #64748b; }
.graph-metrics-footer strong { font-size: 13px; color: #ffffff; font-weight: 800; }
.trend-up { font-size: 9px; color: #10b981; font-weight: 700; margin-top: 1px; }
.deck-sub-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.08); }

/* Widget Suggestions Screen Details */
.suggestions-list-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #94a3b8;
    font-weight: 600;
}
.suggestion-item i.check-accent { color: #10b981; margin-left: auto; font-size: 11px; }
.sug-icon { color: #6366f1; font-size: 10px; width: 12px; }

/* Widget Radial Progress Ring System */
.radial-progress-container {
    position: relative;
    width: 65px;
    height: 65px;
    margin: 0 auto;
}
.radial-svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.radial-bg-track { fill: none; stroke: rgba(255,255,255,0.04); stroke-width: 6; }
.radial-value-fill {
    fill: none;
    stroke: #6366f1;
    stroke-width: 6;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 32.6; /* 87% Fill math algorithm */
    stroke-linecap: round;
}
.radial-center-data-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radial-center-data-label h2 { font-size: 15px; font-weight: 900; color: #ffffff; margin: 0; }
.radial-caption-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9px;
    color: #64748b;
    margin-top: 6px;
}
.badge-excellent {
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
}

/* Widget Bullet Stack Insights Screen */
.insights-bullet-stack {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.insight-bullet-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #94a3b8;
    font-weight: 600;
}
.yellow-txt { color: #f59e0b; }
.green-txt { color: #10b981; }
.blue-txt { color: #3b82f6; }
.purple-txt { color: #c084fc; }

/* Widget Extreme Automation Details */
.wave-visualizer-box {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 40px;
}
.wave-bar-node {
    width: 6px;
    background: #6366f1;
    border-radius: 3px;
    animation: audioWaveBar 1.2s ease-in-out infinite alternate;
}
.wave-bar-node:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.wave-bar-node:nth-child(2) { height: 85%; animation-delay: 0.4s; background: #a855f7; }
.wave-bar-node:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.wave-bar-node:nth-child(4) { height: 95%; animation-delay: 0.6s; background: #a855f7; }
.wave-bar-node:nth-child(5) { height: 50%; animation-delay: 0.3s; }

.automation-metrics-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.automation-metrics-split div { display: flex; flex-direction: column; }
.automation-metrics-split small { font-size: 8px; color: #64748b; text-transform: uppercase; }
.automation-metrics-split h4 { font-size: 13px; color: #ffffff; font-weight: 800; margin: 0; }

/* ==========================================================================
   ANIMATION KEYFRAME ORCHESTRATION DESK
   ========================================================================== */
@keyframes rotateClockwise { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateCounterClockwise { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes pulseDotOpacity { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes gentleWobble { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes audioWaveBar { 0% { transform: scaleY(0.3); } 100% { transform: scaleY(1.1); } }

/* ==========================================================================
   RESPONSIVE LAYOUT CONFIGURATORS (MOBILE, DESKTOP)
   ========================================================================== */
@media (max-width: 1200px) {
    .command-center-container { grid-template-columns: 1fr; gap: 60px; }
    .cc-info-column { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .cc-features-stack { text-align: left; }
    .dashboard-deck-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
    .command-center-section { padding: 60px 0; }
    .command-center-container { padding: 0 24px; }
    .cc-headline { font-size: 32px; }
    .cc-visual-column { height: 400px; }
    .cc-interactive-universe-stage { transform: scale(0.75); }
    .cc-panoramic-dashboard-deck { padding: 0 24px; margin-top: 30px; }
    .dashboard-deck-inner { grid-template-columns: 1fr; }
    .ai-command-status-widget { right: -20px; }
}

/* ==========================================================================
   PROJECT OWNERSHIP WALL STYLES - EXACT IMAGE_0B3886 DESIGN LAYOUT SPEC
   ========================================================================== */
:root {
    --bg-dark-canvas: #fafbfe; /* Clean white slate back-frame canvas matching image_0b3886.jpg */
    --board-panel-dark: #0f1319; /* High contrast carbon-black board canvas */
    --txt-main-slate: #0b132a;
    --txt-muted-gray: #64748b;
    --brand-purple: #6366f1;
    --brand-purple-glow: #a855f7;
    
    /* Exact Role Color Asset Variables Mapping */
    --color-req: #10b981;
    --color-dev: #6366f1;
    --color-test: #3b82f6;
    --color-rev: #f59e0b;
    --color-dep: #ec4899;
}

.ownership-section {
    background-color: var(--bg-dark-canvas);
    padding: 100px 0 60px 0;
    width: 100%;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ownership-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: flex-start;
}

/* ==========================================================================
   LEFT COLUMN TYPOGRAPHY & INTERACTIVE LEGEND STYLING
   ========================================================================== */
.section-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--brand-purple-glow);
    margin-bottom: 24px;
}

.main-headline {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--txt-main-slate);
    letter-spacing: -1px;
    margin: 0 0 20px 0;
}

.purple-gradient-text {
    color: var(--brand-purple);
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--txt-muted-gray);
    max-width: 440px;
    margin: 0 0 35px 0;
}

/* Legend Control Capsule Box Layout */
.legend-card-box {
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
    max-width: 420px;
}

.legend-card-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--brand-purple-glow);
    margin: 0 0 20px 0;
}

.legend-list-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legend-item-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: background-color 0.25s, transform 0.25s;
}

.legend-item-row:hover {
    background: rgba(15, 23, 42, 0.02);
    transform: translateX(4px);
}

.role-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    flex-shrink: 0;
}

.bg-green { background-color: var(--color-req); box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2); }
.bg-purple { background-color: var(--color-dev); box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2); }
.bg-blue { background-color: var(--color-test); box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2); }
.bg-orange { background-color: var(--color-rev); box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2); }
.bg-pink { background-color: var(--color-dep); box-shadow: 0 4px 10px rgba(236, 72, 153, 0.2); }

.role-desc-text h4 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 3px 0;
}
.legend-item-row[data-role="requirement"] h4 { color: var(--color-req); }
.legend-item-row[data-role="developer"] h4 { color: var(--color-dev); }
.legend-item-row[data-role="tester"] h4 { color: var(--color-test); }
.legend-item-row[data-role="reviewer"] h4 { color: var(--color-rev); }
.legend-item-row[data-role="deployment"] h4 { color: var(--color-dep); }

.role-desc-text p {
    font-size: 11px;
    line-height: 1.4;
    color: var(--txt-muted-gray);
    margin: 0;
}

/* ==========================================================================
   RIGHT COLUMN BLACK CARBON CONTRIB WALL CANVAS
   ========================================================================== */
.ownership-board-side {
    position: relative;
    width: 100%;
}

.wall-board-canvas {
    background-color: var(--board-panel-dark);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.3);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Header Component HUD labels inside block panel */
.board-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.board-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.board-dots-indicators {
    display: flex;
    gap: 16px;
}

.dot-indicator {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-indicator .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}
.item-req .dot { background-color: var(--color-req); }
.item-dev .dot { background-color: var(--color-dev); }
.item-test .dot { background-color: var(--color-test); }
.item-rev .dot { background-color: var(--color-rev); }
.item-dep .dot { background-color: var(--color-dep); }

/* Matrix Month Axis Labeling Grid */
.board-months-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    margin-bottom: 15px;
}

.months-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    text-align: center;
}

.months-row span {
    font-size: 10px;
    font-weight: 700;
    color: #475569;
}

/* Inner Stack Rows */
.matrix-rows-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.matrix-team-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
}

.team-profile-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255,255,255,0.1);
}

.profile-info-mini h5 {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
    white-space: nowrap;
}

.profile-info-mini p {
    font-size: 10px;
    color: #64748b;
    margin: 0;
    white-space: nowrap;
}

/* Timeline grid contributions square blocks mapping output layout */
.cells-timeline-strip {
    display: grid;
    grid-template-columns: repeat(36, 1fr);
    gap: 5px;
    width: 100%;
}

.matrix-cell-node {
    aspect-ratio: 1;
    border-radius: 4px;
    background-color: #1e293b; /* Base inactive dead slot block matching image_0b3886 */
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
}

/* Active Highlight Contribution states tracking classes */
.matrix-cell-node.state-req { background-color: rgba(16, 185, 129, 0.35); border: 1px solid var(--color-req); }
.matrix-cell-node.state-dev { background-color: rgba(99, 102, 241, 0.35); border: 1px solid var(--color-dev); }
.matrix-cell-node.state-test { background-color: rgba(59, 130, 246, 0.35); border: 1px solid var(--color-test); }
.matrix-cell-node.state-rev { background-color: rgba(245, 158, 11, 0.35); border: 1px solid var(--color-rev); }
.matrix-cell-node.state-dep { background-color: rgba(236, 72, 153, 0.35); border: 1px solid var(--color-dep); }

/* Glow bloom filter effect configurations */
.matrix-cell-node.active-popup-anchor {
    transform: scale(1.2);
    z-index: 10;
    box-shadow: 0 0 15px currentColor;
}

/* ==========================================================================
   DYNAMIC POPUP OVERLAY LAYOUT ABSOLUTE POSITIONED FLOATS
   ========================================================================== */
.absolute-task-popup-card {
    position: absolute;
    width: 180px;
    background: #ffffff;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    z-index: 50;
    pointer-events: none;
    display: none; /* Controlled dynamically via interaction script engine */
    transform: translate(-50%, -115%);
    animation: popupBloom 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popupBloom {
    from { opacity: 0; transform: translate(-50%, -100%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -115%) scale(1); }
}

.absolute-task-popup-card::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
}

.border-green { border: 2px solid var(--color-req); }
.border-purple { border: 2px solid var(--color-dev); }
.border-blue { border: 2px solid var(--color-test); }
.border-orange { border: 2px solid var(--color-rev); }
.border-pink { border: 2px solid var(--color-dep); }

.popup-role-tag {
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.color-green { color: var(--color-req); }
.color-purple { color: var(--color-dev); }
.color-blue { color: var(--color-test); }
.color-orange { color: var(--color-rev); }
.color-pink { color: var(--color-dep); }

.mini-bullet-dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block;}

.popup-project-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--board-panel-dark);
    margin: 0 0 4px 0;
}

.popup-date-range {
    font-size: 10px;
    color: var(--txt-muted-gray);
    display: block;
    margin-bottom: 10px;
}

.popup-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}
.status-green { background: rgba(16, 185, 129, 0.1); color: var(--color-req); }
.status-purple { background: rgba(99, 102, 241, 0.1); color: var(--color-dev); }
.status-blue { background: rgba(59, 130, 246, 0.1); color: var(--color-test); }
.status-orange { background: rgba(245, 158, 11, 0.1); color: var(--color-rev); }
.status-pink { background: rgba(236, 72, 153, 0.1); color: var(--color-dep); }

/* Accountability banner link block code */
.accountability-banner-row {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    box-shadow: 0 10px 25px rgba(15,23,42,0.02);
    border: 1px solid rgba(15,23,42,0.03);
}

.banner-icon {
    font-size: 16px;
    color: var(--brand-purple-glow);
}

.banner-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--txt-main-slate);
    margin: 0;
}

.bold-purple-txt {
    color: var(--brand-purple);
    font-weight: 800;
}

/* ==========================================================================
   BOTTOM PANORAMIC TELEMETRY HUD BAR METRICS COMPONENT
   ========================================================================== */
.ownership-telemetry-hud-container {
    max-width: 1440px;
    margin: 50px auto 24px auto;
    padding: 0 50px;
}

.telemetry-hud-inner-deck {
    background-color: var(--board-panel-dark);
    border-radius: 20px;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.kpi-block-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kpi-icon-glow-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(255,255,255,0.03);
}

.purple-glow-ring { color: var(--brand-purple-glow); border: 1.5px solid rgba(168, 85, 247, 0.3); box-shadow: 0 0 15px rgba(168, 85, 247, 0.2); }
.green-glow-ring { color: var(--color-req); border: 1.5px solid rgba(16, 185, 129, 0.3); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
.blue-glow-ring { color: var(--color-test); border: 1.5px solid rgba(59, 130, 246, 0.3); box-shadow: 0 0 15px rgba(59, 130, 246, 0.2); }
.yellow-glow-ring { color: var(--color-rev); border: 1.5px solid rgba(245, 158, 11, 0.3); box-shadow: 0 0 15px rgba(245, 158, 11, 0.2); }
.pink-glow-ring { color: var(--color-dep); border: 1.5px solid rgba(236, 72, 153, 0.3); box-shadow: 0 0 15px rgba(236, 72, 153, 0.2); }

.kpi-metrics-meta .kpi-counter-number {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
}

.kpi-metrics-meta .kpi-label-caption {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
}

.kpi-metrics-meta .kpi-sub-context {
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
    display: block;
}

.kpi-deck-vertical-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* Footer Verification Anchor Statement */
.ownership-trust-footer-anchor {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--txt-muted-gray);
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blue-highlight-txt {
    color: var(--brand-purple);
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE LAYOUT RESPONSIVENESS RULES ENGINE (MOBILE, TABLET, DESKTOP)
   ========================================================================== */
@media (max-width: 1200px) {
    .ownership-container { grid-template-columns: 1fr; gap: 5px; }
    .ownership-info-side { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .legend-card-box { max-width: 100%; width: 100%; text-align: left; }
    .telemetry-hud-inner-deck { grid-template-columns: repeat(3, 1fr); display: grid; gap: 24px; }
    .kpi-deck-vertical-divider { display: none; }
}

@media (max-width: 768px) {
    .ownership-section { padding: 50px 0; }
    .ownership-container, .ownership-telemetry-hud-container { padding: 0 20px; }
    .main-headline { font-size: 30px; }
    .wall-board-canvas { padding: 16px; overflow-x: auto; }
    
    /* Lock structural cell strip overflow ratios for vertical scrolling consistency on mobile viewport */
    .matrix-team-row, .board-months-grid { width: 750px; }
    .telemetry-hud-inner-deck { grid-template-columns: 1fr; padding: 20px; }
    .board-header-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
}