
        /* --- CORE ARCHITECTURE & PERFORMANCE RESET --- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            /* Site10 Variables - Enhanced for Lighthouse AAA Contrast compliance */
            --text-main: #202124; 
            --text-muted: #595959;
            --link-color: #1a0dab; 
            --bg-base: #ffffff;
            --bg-block: #f8f9fa;
            --border-ui: #dadce0;
            --header-h-desktop: 64px;
            --header-h-mobile: 40px;
            
            /* Test4 Variables */
            --row-h-odd: 26px;
            --row-h-even: 48px;
            --touch-target: 48px;
            --black: #000000;
            --yellow: #fff9c4;
            --tooltip-border: #5c5400;
            --brand-accent: #b33c00; 
        }

        body {
            font-family: Arial, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-main);
            background-color: var(--bg-base);
            padding-bottom: 75px; 
            -webkit-font-smoothing: antialiased;
        }

        /* --- TYPOGRAPHY & SIMULATED CONDENSED HEADERS --- */
        p, li, td, th, label, input, select {
            font-size: 14px;
            font-family: Arial, sans-serif;
            color: var(--text-main);
        }

        h1 {
            font-weight: bold;
            letter-spacing: -0.01em;
            margin-bottom: 0px;
            display: inline-block;
            width: 121.95%;
            transform: scaleX(0.82);
            transform-origin: top left;
            font-size: 24px; 
            margin-top: 5px; 
            line-height: 1.2;
        }

        h2 {
            font-weight: bold;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
            display: inline-block;
            width: 121.95%; 
            transform: scaleX(0.82);
            transform-origin: top left;
            font-size: 20px; 
            margin-top: 30px; 
            border-bottom: 2px solid var(--border-ui); 
            padding-bottom: 4px;
        }

        /* --- STICKY LINEAR-GRADIENT HEADER --- */
        header {
            background: linear-gradient(#11a833, #00d100);
            border-bottom: 1px solid rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-h-desktop);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            position: relative;
        }

        .brand-vector-logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            text-decoration: none;
        }

        .vector-logo-asset {
            height: 34px;
            width: 180px; 
            display: block;
            padding-right: 10px;
            margin-right: 10px;
        }

        .nav-link-rack { display: flex; gap: 20px; }
        .nav-link-rack a { color: #ffffff; text-decoration: none; font-weight: 500; font-size: 16px; }
        .nav-link-rack a:hover, .nav-link-rack a:focus { color: #ffffff; text-decoration: underline; outline: none; }

        .hamburger-toggle-element {
            display: none; background: none; border: none; cursor: pointer; padding: 0;
            width: 24px; height: 24px; position: absolute; right: 15px; z-index: 1100;
        }

        .mobile-dropdown-menu {
            display: none; position: absolute; top: 100%; left: 0; width: 100%;
            background: linear-gradient(#094e19, #0c6721); border-top: 1px solid rgba(0,0,0,0.1);
            border-bottom: 1px solid rgba(0,0,0,0.2); flex-direction: column; padding: 10px 0; z-index: 999;
        }

        .mobile-dropdown-menu a {
            color: #ffffff; text-decoration: none; font-weight: 500; font-size: 15px;
            padding: 10px 20px; display: block; border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-dropdown-menu a:last-child { border-bottom: none; }

        /* --- IMMUTABLE STATIC AD RESERVATION SYSTEM (ZERO CLS) --- */
        .ad-slot-reserve {
            background-color: var(--bg-block); border: 1px dashed var(--border-ui);
            margin: 20px auto; display: flex; align-items: center; justify-content: center; overflow: hidden;
        }
		
		.ad-slot-reserve ins.adsbygoogle {
			width: 100%;
		}
		
        .ad-meta-text { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }

        /*.ad-atf-top { width: 728px; height: 90px; }*/
		.ad-atf-top, .ad-lower-deck { width: 100%; max-width: 970px; min-height: 90px; height: auto; }
        /*.ad-mid-square { width: 336px; height: 280px; }*/
		.ad-slot-reserve.ad-mid-square {
			width: 100%;
			max-width: 336px;
			min-height: 280px; /* Reserves the space immediately */
			display: flex;     /* Optional: Helps center smaller ads */
			justify-content: center; 
			align-items: center;
		}
		/*.ad-lower-deck { width: 728px; height: 90px; }*/
		
        .ad-sidebar-stacked { width: 300px; height: 250px; }

        /* --- RESPONSIVE TWO-COLUMN CONTAINER LAYOUT --- */
        .page-grid-layout {
            max-width: 1200px; margin: 0 auto; padding: 0 15px; display: grid;
            grid-template-columns: 1fr; gap: 24px;
        }

        @media (min-width: 992px) {
            .page-grid-layout { grid-template-columns: 2fr 300px; align-items: start; }
            .sidebar-sticky-rail { position: sticky; top: 85px; display: flex; flex-direction: column; gap: 20px; }
        }

        /* --- CONTROL PANEL (IMPORTED) --- */
        .control-panel {
			padding: 10px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .control-label {
            font-size: 0.95rem;
            font-weight: bold;
            color: var(--text-main);
        }

        /* --- ACTION BUTTONS (IMPORTED & SCOPED) --- */
        .btn-action-trigger, .btn-update, .btn-cancel {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 0.85rem; 
            font-weight: bold;
            padding: 10px 16px;
            border-radius: 4px;
            border: 1px solid transparent;
            cursor: pointer;
            min-height: 48px; 
            min-width: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.15s ease-in-out;
        }

        .btn-action-trigger:focus-visible, .btn-update:focus-visible, .btn-cancel:focus-visible {
            outline: 2px solid #888;
            outline-offset: 2px;
        }

        .btn-action-trigger, .btn-update {
            background-color: #fff;
            color: #444;
            border: 2px solid #444;
        }

		.btn-action-trigger {
			width: 90%;
			display: block;
			margin: auto;
		}
		
        .btn-action-trigger:hover, .btn-update:hover {
            background-color: #eee;
        }

        .btn-cancel {
            background-color: transparent;
            color: #666666;
            border: 1px solid #cccccc;
        }

        .btn-cancel:hover {
            background-color: #f1f3f5;
            color: #333333;
            border-color: #adadad;
        }

        /* --- MODAL OVERLAY (IMPORTED) --- */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.55);
            justify-content: center;
            align-items: center;
            z-index: 2000;
            padding: 16px;
        }

        .modal-frame {
            background-color: #ffffff;
            border-radius: 4px;
            width: 100%;
            max-width: 460px;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            border-top: 4px solid #2e3d47;
        }

        .modal-heading {
            padding: 16px 20px;
            font-size: 1.15rem;
            font-weight: bold;
            color: #2e3d47;
            border-bottom: 1px solid #e9ecef;
        }

        .scrollable-list {
            overflow-y: auto;
            flex-grow: 1;
            padding: 4px 0;
            background-color: #ffffff;
        }

        .scrollable-list:focus-visible {
            outline: 3px solid #467e25;
            outline-offset: -3px;
        }

        .selection-row {
            display: flex;
            align-items: center;
            padding: 14px 20px; 
            border-bottom: 1px solid #f1f3f5;
        }

        .selection-row:last-child {
            border-bottom: none;
        }

        .selection-row:hover {
            background-color: #f8f9fa;
        }

        .selection-row input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .selection-row input[type="checkbox"]:focus-visible {
            outline: 3px solid #467e25;
            outline-offset: 2px;
        }

        .selection-row label {
            margin-left: 12px;
            cursor: pointer;
            flex-grow: 1;
            font-size: 0.95rem;
            color: #333333;
            user-select: none;
        }

        .modal-footer {
            padding: 14px 20px;
            background-color: #f8f9fa;
            border-top: 1px solid #e9ecef;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

        /* --- COMPUTATIONAL ESTIMATOR MODULE --- */
        .calculator-panel-box {
            background-color: var(--bg-block); border: 1px solid var(--border-ui);
            padding: 10px; border-radius: 4px;
        }

        .calc-input-row { display: flex; flex-wrap: wrap; gap: 15px; align-items: flex-end; margin-bottom: 20px; }

        #calc-label { font-size: 16px; color:#555555; font-weight: bold; margin-right: auto; margin-bottom: 30px; }

        .input-block-container { display: flex; flex-direction: column; gap: 5px; font-size: 11.2px; }
        .input-block-container label { font-weight: bold; font-size:10px; text-align:center; }
        .input-block-container input {
            padding: 4px; border: 1px solid var(--border-ui); border-radius: 1px;
            width: 58px; text-align: center; color: var(--brand-accent); font-weight:bold; font-size:13px;
        }

        .btn-update-recalc {
            background:#fff; color: #444; border: 2px solid #000; padding: 6px 8px; font-size:11px;
            font-weight: bold; border-radius: 4px; cursor: pointer; box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        .btn-update-recalc.flash-transition { transition: background-color 2.5s ease; }
        .btn-update-recalc:hover, .btn-update-recalc:focus, .btn-action-trigger:hover { background: #eee; outline: 2px solid #00afef; }

        /* --- INTEGRATED TABLE WRAPPER --- */
        .table-wrapper { width: 100%; background: #fff; }
        #view-toggle { 
            color: var(--link-color); 
            text-decoration: underline; 
            font-size: 13px; 
            cursor: pointer; 
            display: inline-block; 
            min-height: 24px; 
            background: none;
            border: none;
            padding: 0;
            font-family: inherit;
        }
        .table-wrapper table { width: 100%; table-layout: fixed; border-collapse: collapse; border: none; }
        .table-wrapper th, .table-wrapper td { border: none; padding: 0 4px; box-sizing: border-box; vertical-align: middle; font-size: 14px; position: relative; height: var(--row-h-odd); color: var(--black); }
        .table-wrapper th { border-bottom: 1px solid var(--border-ui); padding-bottom: 4px; padding-top: 8px; }

        .condensed { display: block; transform: scaleX(0.82); transform-origin: left; width: 122%; white-space: nowrap; }
        .table-wrapper .even-row td { height: var(--row-h-even); padding-bottom: 12px; }
        .hidden-row { display: none; }
        .desc-text { white-space: normal; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; line-height: 1.2;color: #666; }

        .col-chk  { width: 24px; text-align: left; } 
        .col-qty  { width: 37px; text-align: center; }
        .col-low  { width: 60px; text-align: right; }
        .col-high { width: 60px; text-align: right; }
        .col-name { width: auto; text-align: left; }
        .bold { font-weight: bold; }
        .hard-clip { overflow: hidden; }
        .desc-cell { padding-left: 0.5em; padding-right: 3em; }

        .table-wrapper input[type="checkbox"] {
            width: 16px; height: 16px; appearance: none; -webkit-appearance: none; border: 2.2px solid var(--black);
            background-color: transparent; cursor: pointer; margin: 0; display: block; position: relative; outline-offset: 4px;
        }
        .table-wrapper input[type="checkbox"]::after { content: ""; position: absolute; top: 50%; left: 50%; width: var(--touch-target); height: var(--touch-target); transform: translate(-50%, -50%); }
        .table-wrapper input[type="checkbox"]:focus-visible { outline: 2px solid #005fcc; }
        .table-wrapper input[type="checkbox"]:checked {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSI2IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwb2x5bGluZSBwb2ludHM9IjIwIDYgOSAxNyA0IDEyIj48L3BvbHlsaW5lPjwvc3ZnPg==');
            background-size: 85% 85%; background-position: center; background-repeat: no-repeat;
        }

        .table-wrapper td:hover .tooltip { display: block; }
        .tooltip {
            display: none; position: absolute; z-index: 10; top: 28px; left: 5px; background: var(--yellow);
            border: 1px solid var(--tooltip-border); padding: 5px 10px; color: var(--black); font-size: 13px; width: 280px;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.1); pointer-events: none;
        }

        .table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; background-color: var(--bg-block); }
        .table-container-padded { padding-right: 5%; padding-bottom: 15px; width: 100%; }
        .matrix-table { width: 100%; border-collapse: collapse; }
        .matrix-table th {
            font-stretch: condensed; font-size: 0.75rem; letter-spacing: 0.5px;
            color: var(--text-muted); padding: 10px 2px; text-align: center; min-width: 65px; word-break: break-all; border: none;
        }
        .matrix-table th.row-label-col { width: 32%; text-align: right; padding: 10px 8px 10px 0px;}
        .matrix-table td { height: 48px; position: relative; border: 1px solid var(--border-ui); padding: 0; padding-bottom: 2em; background-color: var(--bg-base); }
        
        .cell-select {
            width: 100%; height: 100%; border: none; background: transparent; text-align: center; text-align-last: center;
            font-size: 14px; font-weight: bold; color: var(--brand-accent); cursor: pointer; outline: none; appearance: none;
            -webkit-appearance: none; -moz-appearance: none; padding: 4px; position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center;
        }
        .cell-select:focus { background-color: #fffde7; }
        .cell-select:invalid, .cell-select option[value=""] { color: #cccccc; font-weight: normal; }
        
        .slider-section { background-color: var(--bg-block); padding: 16px; margin-top: 0; }
        .slider-header { font-size: 12px; font-weight: bold; color: var(--text-muted); margin-bottom: 2px;}
        .slider-current-label { color: var(--brand-accent); font-weight: bold; font-size: 14px; margin-left: 4px; }
        .slider-container { width: 100%; padding: 4px 0; }
        .input-slider {
            width: 100%; height: 6px; background: var(--border-ui); outline: none; border-radius: 3px;
            appearance: none; -webkit-appearance: none; cursor: pointer;
        }
        .input-slider::-webkit-slider-thumb {
            -webkit-appearance: none; appearance: none; width: 18px; height: 18px;
            border-radius: 50%; background: #00afef; cursor: pointer; border: none;
        }
        .input-slider::-moz-range-thumb {
            width: 18px; height: 18px; border-radius: 50%; background: var(--brand-accent); cursor: pointer; border: none;
        }

        /* --- BULLETED ARRAYS --- */
        ul { margin-left: 20px; margin-bottom: 15px; }
        li { margin-bottom: 6px; }

        /* --- FOOTER SPECIFICATIONS --- */
        footer {
            border-top: 1px solid var(--border-ui); padding: 25px 15px; background-color: var(--bg-block);
            text-align: center; margin-top: 40px;
        }
        .footer-line-segment { display: block; font-size: 13px; line-height: 1.6; color: var(--text-muted); }
        .footer-line-segment a, .footer-btn-link {
            color: var(--link-color); text-decoration: none; margin: 0 5px; background: none;
            border: none; padding: 0; font-family: Arial, sans-serif; font-size: 13px; cursor: pointer; display: inline;
        }
        .footer-line-segment a:hover, .footer-btn-link:hover { text-decoration: underline; }
        .footer-compliance-link { color: #1a0dab !important; text-decoration: underline !important; }

        /* --- STICKY OVERLAY BOTTOM MOBILE AD UNIT --- */
        .bottom-anchor-viewframe {
            position: fixed; bottom: 0; left: 0; width: 100%; height: 50px; background-color: #ffffff;
            border-top: 1px solid var(--border-ui); z-index: 1500; display: flex; justify-content: center; align-items: center;
        }
        .anchor-ad-content-box { width: 320px; height: 50px; background-color: #e0e0e0; display: flex; align-items: center; justify-content: center; }
		

        /* --- COOKIE-CONSENT DIALOG --- */
        #cookie-consent {
            display: none; position: fixed; left: 0; top: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.6); z-index: 3000; align-items: center; justify-content: center;
        }
        .modal-inner-card {
            background-color: var(--bg-base); border: 1px solid var(--text-main); padding: 25px;
            max-width: 520px; width: 92%; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
        }
        .modal-inner-card p { margin-bottom: 15px; color: var(--text-main); font-size: 14px; line-height: 1.5; }
        .opt-out-checkbox-wrapper { display: flex; align-items: center; gap: 10px; margin: 20px 0; padding: 10px; background-color: var(--bg-block); border: 1px solid var(--border-ui); border-radius: 4px; }
        .opt-out-checkbox-wrapper input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; }
        .opt-out-checkbox-wrapper label { font-weight: bold; cursor: pointer; user-select: none; }
        .modal-action-row { display: flex; justify-content: flex-end; }

        #accept-consent {
            background: linear-gradient(#0c6721, #094e19); color: #ffffff; border: none; padding: 10px 24px;
            font-weight: bold; cursor: pointer; border-radius: 4px; text-decoration: none; display: inline-block; font-size: 14px;
        }
        #accept-consent:hover, #accept-consent:focus { background: #073a12; outline: 2px solid var(--link-color); }

        /* --- IMPORTED SOCIAL SHARE / BOOKMARK BAR (#sm2) --- */
        .scontainer {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            padding: 4px 0;
        }

        .scontainer .sbox {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background-color: var(--text-muted);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .scontainer .sbox:hover,
        .scontainer .sbox:focus-within {
            opacity: 0.85;
            transform: translateY(-2px);
        }

        .scontainer .sbox a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }

        .scontainer .sbox.i-bookmark,
        .scontainer .sbox:nth-child(2),
        .scontainer .sbox:nth-child(3),
        .scontainer .sbox:nth-child(4) { background-color: #00AFEF; }

        .scontainer .i-base { fill: none; }
        .scontainer .i-white { stroke: #ffffff; fill: none; }
        .scontainer .sbox:nth-child(3) .i-white { fill: #ffffff; }
        .scontainer .i-lg { width: 22px; height: 22px; }
        .scontainer .i-med { width: 18px; height: 18px; }

        /* --- MOBILE METRICS LAYER OVERRIDES --- */
        @media (max-width: 768px) {
            header { height: var(--header-h-mobile); }
            .vector-logo-asset { height: 28px; width: 145px; padding-right: 0; margin-right: 0; }
            .nav-link-rack { display: none; }
            .hamburger-toggle-element { display: block; }
            /*.ad-slot-reserve.ad-atf-top, .ad-slot-reserve.ad-lower-deck { width: 320px; height: 50px; }	*/	
			.ad-slot-reserve.ad-atf-top, .ad-slot-reserve.ad-lower-deck { width: 100%; min-height: 50px; height: auto; }
            .sidebar-sticky-rail { position: static; display: flex; flex-direction: column; gap: 20px; }
            .ad-slot-reserve.ad-sidebar-stacked { width: 100%; max-width: 300px; height: 250px; margin: 0 auto; }
            h1 { font-size: 22px; }
            h2 { font-size: 18px; width: 121.95%; }
        }

        @media (max-width: 360px) {
            .modal-frame { max-height: 90vh; }
            .modal-footer { flex-direction: column-reverse; }
            .modal-footer button { width: 100%; }
        }
		
		/* --- Homewyse graphics and legacy --- */ 
		
		#hiring_img, #infographic_img {
			margin: 1em auto;
			width: 100%;
			height: auto;
			display: block;
		}
		
		#infographic_img {
			max-width: 256px;
			aspect-ratio: 256 / 225;
		}

		#hire1 {
			width: 80px;
			margin: 5px 15px 0 6px;
			float: left;
		}
	
		li.refbox {
			font-size: 12px
		}
		
		.checkbox {
			font-weight: normal;
		}