		.dir-header {
			display: flex;
			justify-content: space-between;
			align-items: baseline;
			border-bottom: 1px solid #e9ecef;
			padding-bottom: .65rem;
			margin: 1.5rem 0 1.2rem;
			gap: 1rem;
			flex-wrap: wrap;
		}
		.dir-header .label {
			font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
			color: #6c757d; font-weight: 700;
		}
		.dir-header .total { font-size: .9rem; color: #1a1d22; font-weight: 600; }
		.dir-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
			gap: .8rem;
			list-style: none;
			padding: 0;
			margin: 0;
		}
		.dir-card {
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			background: #fff;
			border: 1px solid #e9ecef;
			padding: .9rem 1.1rem;
			text-decoration: none;
			color: inherit;
			transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
			border-left: 3px solid #6366f1;
			min-height: 64px;
		}
		.dir-card:hover {
			border-color: #adb5bd;
			border-left-color: #4338ca;
			box-shadow: 0 6px 18px rgba(0,0,0,.06);
			transform: translateY(-2px);
			color: inherit;
		}
		.dir-card .name {
			font-weight: 700; color: #1a1d22; font-size: .98rem; line-height: 1.25;
			margin: 0 0 .15rem;
		}
		.dir-card .meta {
			font-size: .78rem; color: #6c757d; line-height: 1.3;
			text-transform: uppercase;
			letter-spacing: .08em;
			font-weight: 600;
		}
		.dir-filter-wrap {
			position: relative;
			max-width: 480px;
			margin-bottom: 1rem;
		}
		.dir-filter-wrap input {
			width: 100%;
			padding: .65rem 2.4rem .65rem .9rem;
			border: 1px solid #ced4da;
			border-radius: 8px;
			font-size: .95rem;
			background: #fff;
			transition: border-color .12s ease, box-shadow .12s ease;
		}
		.dir-filter-wrap input:focus {
			outline: 0;
			border-color: #6366f1;
			box-shadow: 0 0 0 3px rgba(99,102,241,.12);
		}
		.dir-filter-wrap::after {
			content: "🔍";
			position: absolute; right: .75rem; top: 50%;
			transform: translateY(-50%);
			opacity: .45;
			font-size: 1rem;
			pointer-events: none;
		}
		.dir-empty {
			padding: 2rem;
			text-align: center;
			color: #6c757d;
			font-size: .95rem;
			border: 1px dashed #dee2e6;
			border-radius: 10px;
			display: none;
		}
		.dir-empty.show { display: block; }

		.map-card {
			background: #fff;
			border: 1px solid #e9ecef;
			border-radius: 12px;
			padding: 1.6rem 1.6rem 1rem;
			margin: 1.5rem 0;
			text-align: center;
		}
		.map-card .map-prompt {
			font-size: .72rem;
			text-transform: uppercase;
			letter-spacing: .14em;
			color: #6c757d;
			font-weight: 700;
			margin-bottom: .6rem;
		}
		.map-card .map-title {
			font-size: 1.25rem;
			font-weight: 800;
			color: #1a1d22;
			margin: 0 0 1rem;
			letter-spacing: -.01em;
		}
		.map-card img {
			max-width: 100%;
			height: auto;
		}

		.usmap-wrap     { position: relative; display: inline-block; max-width: 100%; line-height: 0; }
		.usmap-base     { display: block; max-width: 100%; height: auto; }
		.usmap-overlay  { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
		.usmap-overlay polygon {
			fill: rgba(37, 99, 235, .42);
			stroke: rgba(30, 64, 175, .85);
			stroke-width: .6;
			cursor: pointer;
			transition: fill .25s ease, stroke .25s ease;
		}
		.usmap-overlay a:hover polygon,
		.usmap-overlay a:focus polygon {
			fill: rgba(22, 163, 74, .65);
			stroke: rgba(21, 128, 61, .95);
		}
		.usmap-overlay a:focus-visible polygon {
			outline: 2px solid #166534; outline-offset: 2px;
		}

		.stat-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
			gap: .8rem;
			margin: 1.5rem 0 2rem;
		}
		.stat-card {
			background: #fff;
			border-width: 0 0 3px 3px;
			border-style:solid;
			border-color: #6366f1;
			padding: 1.05rem 1.2rem;
		}
		.stat-card .stat-value {
			font-size: 1.65rem;
			font-weight: 800;
			color: #1a1d22;
			letter-spacing: -.01em;
			line-height: 1.1;
		}
		.stat-card .stat-label {
			font-size: .7rem;
			text-transform: uppercase;
			letter-spacing: .14em;
			color: #4338ca;
			font-weight: 700;
			margin-top: .4rem;
		}
		.stat-card .stat-sub {
			font-size: .78rem;
			color: #6c757d;
			margin-top: .2rem;
		}

		.about-section {
			margin: 3rem 0 1.5rem;
			padding: 3rem 1.5rem 2.5rem;
			background:
				radial-gradient(circle at 20% 0%, rgba(99,102,241,.06), transparent 55%),
				radial-gradient(circle at 80% 100%, rgba(99,102,241,.04), transparent 55%),
				#fbfbfd;
			border-top: 1px solid #e9ecef;
			border-bottom: 1px solid #e9ecef;
			text-align: center;
			border-radius: 4px;
		}
		.about-section .about-inner {
			max-width: 760px;
			margin: 0 auto;
		}
		.about-eyebrow {
			display: inline-block;
			font-size: .7rem;
			font-weight: 700;
			letter-spacing: .22em;
			text-transform: uppercase;
			color: #4338ca;
			padding: .25rem .85rem;
			border: 1px solid #e0e2ff;
			background: #fff;
			border-radius: 999px;
			margin-bottom: 1.1rem;
		}
		.about-heading {
			font-size: 1.85rem;
			font-weight: 800;
			color: #1a1d22;
			margin: 0 0 .35rem;
			letter-spacing: -.02em;
		}
		.about-tag {
			font-size: .95rem;
			color: #6c757d;
			font-style: italic;
			margin: 0 0 1.4rem;
		}
		.about-lead {
			color: #343a40;
			line-height: 1.7;
			margin: 0 auto 1.1rem;
			font-size: 1rem;
			max-width: 640px;
		}
		.about-lead:last-of-type { margin-bottom: 1.5rem; }
		.about-features {
			list-style: none;
			padding: 0;
			margin: 1.4rem 0 0;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: .55rem;
		}
		.about-features li {
			display: inline-flex;
			align-items: center;
			gap: .45rem;
			padding: .45rem .9rem;
			background: #fff;
			border: 1px solid #e9ecef;
			border-radius: 999px;
			font-size: .82rem;
			font-weight: 600;
			color: #495057;
		}
		.about-features li .feat-dot {
			width: 6px; height: 6px;
			border-radius: 50%;
			background: #6366f1;
			display: inline-block;
		}
		
