:root {
	--ink: #1f1d1d;
	--muted: #66615d;
	--paper: #fbfaf7;
	--bone: #ece8df;
	--clay: #a4360b;
	--clay-dark: #7c250a;
	--line-red: #b32720;
	--moss: #176b45;
	--moss-soft: #dfe9df;
	--gold: #c8a44d;
	--white: #ffffff;
	--border: #d7d0c5;
	--shadow: 0 18px 40px rgba(31, 29, 29, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: "Aptos", "Segoe UI", Arial, sans-serif;
	line-height: 1.5;
}

body,
button,
input,
select,
textarea {
	font: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button,
select,
input,
textarea {
	border: 1px solid var(--border);
	border-radius: 4px;
}

button {
	cursor: pointer;
}

[ng-cloak] {
	display: none !important;
}

.content-grid {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.section-band {
	padding: 72px 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: var(--paper);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 10px 24px rgba(31, 29, 29, 0.08);
}

.brand-rack {
	display: grid;
	grid-template-columns: 1fr minmax(220px, 300px) 1fr;
	align-items: stretch;
	min-height: 116px;
	background: var(--paper);
}

.brand-mark {
	display: grid;
	place-items: center;
	padding: 16px;
	background: transparent;
}

.brand-mark img {
	width: min(260px, 100%);
	filter: saturate(0.95);
}

.nav-cluster {
	display: grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 24px;
	align-items: start;
	padding: 18px clamp(16px, 3vw, 52px);
	background: var(--clay);
	color: var(--white);
}

.nav-cluster div {
	display: grid;
	gap: 6px;
}

.nav-heading {
	margin-bottom: 4px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
	line-height: 1.1;
}

.nav-cluster a:not(.nav-heading) {
	width: fit-content;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.82rem;
}

.nav-cluster a:hover,
.flashline a:hover,
.site-footer a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.flashline {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	align-items: center;
	min-height: 48px;
	padding: 8px clamp(20px, 6vw, 92px);
	background: var(--clay-dark);
	color: var(--white);
	border-top: 8px solid var(--bone);
	font-size: 0.9rem;
}

.flashline a {
	color: #23a55d;
	font-weight: 700;
}

.flashline a:last-child {
	justify-self: end;
}

.flashline span {
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
}

.hero {
	position: relative;
	min-height: calc(100vh - 172px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(251, 250, 247, 0.94), rgba(251, 250, 247, 0.76)),
		radial-gradient(circle at 82% 44%, rgba(200, 164, 77, 0.24), transparent 28%),
		var(--paper);
}

.hero::after {
	content: "";
	position: absolute;
	right: -160px;
	top: 18%;
	width: 520px;
	height: 520px;
	background: url("/assets/napata-mark.png") center / contain no-repeat;
	opacity: 0.08;
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
	gap: 48px;
	align-items: center;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--moss);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.hero h1,
.split-heading h2,
.section-heading h2,
.developments-grid h2,
.contact-grid h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.05;
}

.hero h1 {
	max-width: 620px;
	font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero-lede {
	max-width: 580px;
	margin: 28px 0 0;
	color: var(--muted);
	font-size: 1.18rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid currentColor;
	border-radius: 4px;
	font-weight: 800;
	line-height: 1;
}

.button-primary {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
}

.button-primary:hover {
	background: var(--clay-dark);
	border-color: var(--clay-dark);
}

.button-secondary {
	background: transparent;
	color: var(--ink);
}

.button-secondary:hover {
	color: var(--clay-dark);
}

.briefing-panel {
	padding: 24px;
	background: #dbd9d3;
	border: 1px solid #c8c3b8;
	box-shadow: var(--shadow);
}

.briefing-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(31, 29, 29, 0.18);
}

.briefing-topline span {
	color: var(--moss);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.signal-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.signal-tile {
	min-height: 170px;
	padding: 18px;
	display: grid;
	align-content: end;
	background:
		linear-gradient(135deg, rgba(31, 29, 29, 0.08), rgba(164, 54, 11, 0.12)),
		var(--paper);
	border: 1px solid rgba(31, 29, 29, 0.1);
	border-radius: 8px;
}

.signal-tile p,
.signal-tile span,
.insight-card p,
.poll-meta,
.region-story span {
	margin: 0;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 700;
}

.signal-tile h2 {
	margin: 8px 0;
	font-size: 1.02rem;
	line-height: 1.2;
}

.services-band,
.polls-band {
	background: var(--white);
}

.split-heading,
.developments-grid,
.section-heading,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
	gap: 48px;
	align-items: end;
}

.split-heading h2,
.section-heading h2,
.developments-grid h2,
.contact-grid h2 {
	font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.split-heading > p,
.developments-grid > p {
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 36px;
}

.service-card,
.insight-card,
.poll-card,
.builder-panel,
.survey-card,
.region-story,
.pathway-detail {
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--paper);
}

.service-card {
	min-height: 260px;
	padding: 24px;
	display: grid;
	align-content: start;
	gap: 16px;
}

.service-card span {
	color: var(--clay);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.5rem;
}

.service-card h3,
.insight-card h3,
.poll-card h3,
.pathway-detail h3,
.region-story h3,
.survey-card h3 {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.18;
}

.service-card p,
.pathway-detail p,
.poll-card p,
.region-story p,
.survey-card p {
	margin: 0;
	color: var(--muted);
}

.developments-band {
	background: var(--bone);
}

.developments-grid {
	grid-template-columns: minmax(260px, 0.8fr) minmax(220px, 0.35fr) minmax(320px, 0.85fr);
	align-items: stretch;
}

.region-board {
	display: grid;
	gap: 10px;
}

.region-board button,
.segmented-control button {
	min-height: 46px;
	padding: 10px 14px;
	background: var(--white);
	color: var(--ink);
	font-weight: 800;
	text-align: left;
}

.region-board button.active,
.segmented-control button.active {
	background: var(--moss);
	color: var(--white);
	border-color: var(--moss);
}

.region-story {
	padding: 24px;
	background: var(--white);
}

.region-story h3 {
	margin-top: 12px;
	margin-bottom: 14px;
}

.insight-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.insight-card {
	overflow: hidden;
	background: var(--white);
}

.insight-card p,
.insight-card h3,
.insight-card a {
	display: block;
	margin-left: 18px;
	margin-right: 18px;
}

.insight-card p {
	margin-top: 16px;
}

.insight-card h3 {
	margin-top: 8px;
	margin-bottom: 14px;
	min-height: 78px;
}

.insight-card a {
	margin-bottom: 20px;
	color: var(--clay-dark);
	font-weight: 800;
}

.insight-image {
	height: 164px;
	border-bottom: 1px solid var(--border);
	background-color: #d9e0df;
}

.visual-map {
	background:
		linear-gradient(36deg, transparent 45%, rgba(179, 39, 32, 0.6) 46%, transparent 48%),
		radial-gradient(circle at 35% 46%, rgba(23, 107, 69, 0.22) 0 18%, transparent 19%),
		linear-gradient(135deg, #b9d7dc, #f4f0e5);
}

.visual-leader {
	background:
		linear-gradient(90deg, rgba(31, 29, 29, 0.72), transparent 42%),
		linear-gradient(145deg, #68402f, #d0a782 46%, #ece8df);
}

.visual-policy {
	background:
		linear-gradient(0deg, rgba(31, 29, 29, 0.36), transparent 55%),
		repeating-linear-gradient(90deg, #c9d3ce 0 20px, #ece8df 20px 42px);
}

.visual-industry {
	background:
		linear-gradient(110deg, rgba(164, 54, 11, 0.68), transparent 38%),
		linear-gradient(145deg, #2d342f, #aeb9af);
}

.pathways-band {
	background:
		linear-gradient(180deg, rgba(251, 250, 247, 0.9), rgba(236, 232, 223, 0.88)),
		var(--bone);
}

.pathway-layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 0.75fr);
	gap: 28px;
	margin-top: 36px;
	align-items: start;
}

.pathway-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.pathway-card {
	min-height: 220px;
	padding: 0;
	overflow: hidden;
	background: var(--white);
	border-radius: 8px;
	text-align: center;
	font-weight: 900;
}

.pathway-card img {
	width: 100%;
	height: 152px;
	object-fit: cover;
	filter: saturate(0.2);
}

.pathway-card span {
	display: grid;
	place-items: center;
	min-height: 66px;
	padding: 10px;
}

.pathway-card.active {
	border-color: var(--moss);
	box-shadow: inset 0 0 0 2px var(--moss);
}

.pathway-detail {
	position: sticky;
	top: 190px;
	padding: 26px;
	background: var(--white);
}

.pathway-detail label,
.builder-form label,
.survey-card label {
	display: grid;
	gap: 8px;
	margin-top: 18px;
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 800;
}

.pathway-detail select,
.builder-form input,
.builder-form textarea,
.survey-card input,
.survey-card textarea {
	width: 100%;
	min-height: 42px;
	padding: 9px 10px;
	background: var(--white);
	color: var(--ink);
}

.pathway-detail p {
	margin-top: 18px;
	margin-bottom: 22px;
}

.poll-workspace {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(300px, 420px);
	gap: 24px;
	margin-top: 34px;
	align-items: start;
}

.active-polls {
	display: grid;
	gap: 16px;
}

.poll-card,
.builder-panel,
.survey-card {
	padding: 22px;
	background: var(--paper);
}

.poll-meta {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.poll-card form {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.option-row {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 10px;
	align-items: center;
	min-height: 42px;
	padding: 10px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 4px;
}

.results {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.result-row > div:first-child {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.88rem;
}

.meter {
	height: 9px;
	overflow: hidden;
	background: var(--bone);
	border-radius: 4px;
}

.meter i {
	display: block;
	height: 100%;
	background: var(--moss);
}

.segmented-control {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.builder-form {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.field-stack {
	display: grid;
	gap: 8px;
}

.field-stack span {
	font-size: 0.9rem;
	font-weight: 800;
}

.status-message {
	margin: 16px 0 0;
	padding: 12px;
	background: var(--moss-soft);
	color: var(--moss);
	border: 1px solid rgba(23, 107, 69, 0.24);
	border-radius: 4px;
	font-weight: 800;
}

.survey-responses {
	margin-top: 24px;
}

.survey-card {
	display: grid;
	grid-template-columns: minmax(240px, 0.5fr) minmax(340px, 1fr);
	gap: 24px;
}

.survey-card form {
	display: grid;
	gap: 12px;
}

.contact-band {
	background: var(--ink);
	color: var(--white);
}

.contact-band .eyebrow,
.contact-band p {
	color: #94d5b3;
}

.contact-grid {
	align-items: center;
}

.contact-grid .button {
	justify-self: end;
	color: var(--white);
	background: var(--clay);
	border-color: var(--clay);
}

.site-footer {
	padding: 28px 0;
	background: #151313;
	color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
	display: grid;
	grid-template-columns: 190px 1fr auto;
	gap: 20px;
	align-items: center;
}

.footer-grid img {
	width: 190px;
	filter: invert(1) grayscale(1) brightness(1.8);
	opacity: 0.72;
}

.public-note-panel {
	display: grid;
	align-content: start;
	gap: 14px;
}

.public-note-panel h3 {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.18;
}

.public-note-panel p:not(.eyebrow) {
	margin: 0;
	color: var(--muted);
}

.admin-body {
	background: #f4f2ec;
}

.admin-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(251, 250, 247, 0.94);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(18px);
}

.admin-header-grid {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 24px;
	align-items: center;
	min-height: 78px;
}

.admin-header img {
	width: 190px;
}

.admin-header nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
	font-weight: 800;
}

.admin-header nav a:hover {
	color: var(--clay-dark);
}

.admin-hero {
	background:
		linear-gradient(120deg, rgba(31, 29, 29, 0.92), rgba(31, 29, 29, 0.78)),
		linear-gradient(135deg, var(--clay), var(--moss));
	color: var(--white);
}

.admin-hero .eyebrow {
	color: #8bd5ad;
}

.admin-hero-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
	gap: 48px;
	align-items: end;
}

.admin-hero h1,
.admin-panel-heading h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.05;
}

.admin-hero h1 {
	font-size: clamp(2.6rem, 5vw, 5rem);
}

.admin-hero p:not(.eyebrow) {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 1.08rem;
}

.admin-stat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.admin-stat-grid div {
	min-height: 128px;
	padding: 18px;
	display: grid;
	align-content: end;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
}

.admin-stat-grid span {
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1;
}

.admin-stat-grid p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 800;
}

.admin-layout {
	display: grid;
	grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.admin-live-panel {
	display: grid;
	gap: 16px;
}

.admin-panel-heading {
	padding: 22px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
}

.admin-panel-heading h2 {
	font-size: 2rem;
}

.modern-body {
	--modern-ink: #17191c;
	--modern-muted: #687078;
	--modern-panel: #ffffff;
	--modern-field: #f3f6f4;
	--modern-blue: #244f68;
	--modern-red: #b32720;
	--modern-green: #176b45;
	--modern-gold: #c8a44d;
	background: var(--modern-field);
	color: var(--modern-ink);
	font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
}

.modern-header {
	position: sticky;
	top: 0;
	z-index: 25;
	display: grid;
	grid-template-columns: 220px 1fr auto;
	gap: 24px;
	align-items: center;
	min-height: 82px;
	padding: 12px clamp(20px, 5vw, 72px);
	background: rgba(243, 246, 244, 0.9);
	border-bottom: 1px solid rgba(23, 25, 28, 0.08);
	backdrop-filter: blur(18px);
}

.modern-logo img {
	width: 210px;
}

.modern-header nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px;
	color: var(--modern-muted);
	font-weight: 800;
}

.modern-header nav a:hover {
	color: var(--modern-ink);
}

.modern-hero {
	min-height: calc(100vh - 82px);
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
	gap: clamp(32px, 7vw, 96px);
	align-items: center;
	padding: 68px clamp(20px, 6vw, 92px);
	overflow: hidden;
	background:
		linear-gradient(110deg, rgba(243, 246, 244, 0.98), rgba(243, 246, 244, 0.78)),
		linear-gradient(145deg, rgba(36, 79, 104, 0.16), transparent 44%),
		var(--modern-field);
}

.modern-hero-copy h1 {
	max-width: 780px;
	margin: 0;
	font-size: clamp(3.4rem, 7vw, 7.4rem);
	line-height: 0.95;
	letter-spacing: 0;
}

.modern-hero-copy p:not(.eyebrow) {
	max-width: 620px;
	color: var(--modern-muted);
	font-size: 1.18rem;
}

.modern-map {
	position: relative;
	min-height: 620px;
	display: grid;
	place-items: center;
}

.modern-map::before {
	content: "";
	position: absolute;
	inset: 7%;
	border: 1px solid rgba(23, 25, 28, 0.12);
	border-radius: 50%;
}

.modern-map::after {
	content: "";
	position: absolute;
	inset: 20%;
	border: 1px dashed rgba(36, 79, 104, 0.26);
	border-radius: 50%;
}

.map-node {
	position: absolute;
	min-width: 132px;
	min-height: 132px;
	padding: 18px;
	display: grid;
	place-items: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(23, 25, 28, 0.1);
	border-radius: 8px;
	box-shadow: 0 20px 50px rgba(23, 25, 28, 0.1);
	font-weight: 900;
}

.map-node-core {
	position: relative;
	width: 210px;
	height: 210px;
	background: var(--modern-panel);
	color: var(--modern-green);
}

.map-node-core img {
	width: 150px;
	opacity: 0.9;
}

.map-node:nth-child(2) {
	top: 6%;
	left: 14%;
}

.map-node:nth-child(3) {
	top: 18%;
	right: 7%;
}

.map-node:nth-child(4) {
	bottom: 15%;
	left: 3%;
}

.map-node:nth-child(5) {
	right: 17%;
	bottom: 5%;
}

.modern-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: rgba(23, 25, 28, 0.12);
	border-top: 1px solid rgba(23, 25, 28, 0.12);
	border-bottom: 1px solid rgba(23, 25, 28, 0.12);
}

.modern-strip div {
	min-height: 132px;
	padding: 28px clamp(20px, 5vw, 48px);
	display: grid;
	align-content: center;
	gap: 8px;
	background: var(--modern-panel);
}

.modern-strip strong {
	font-size: 1.05rem;
}

.modern-strip span,
.modern-capability-grid p,
.modern-insight-stack p,
.modern-pathway-grid article p,
.modern-poll-grid aside p {
	color: var(--modern-muted);
}

.modern-section {
	padding: 88px clamp(20px, 6vw, 92px);
}

.modern-section-heading {
	display: grid;
	grid-template-columns: minmax(260px, 0.75fr) minmax(340px, 1fr);
	gap: 48px;
	align-items: end;
	margin-bottom: 34px;
}

.modern-section-heading h2,
.modern-contact h2 {
	margin: 0;
	font-size: clamp(2.3rem, 5vw, 5.4rem);
	line-height: 1;
	letter-spacing: 0;
}

.modern-capability-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.modern-capability-grid article,
.modern-insight-stack article,
.modern-pathway-grid button,
.modern-pathway-grid article,
.modern-poll-grid aside {
	border: 1px solid rgba(23, 25, 28, 0.1);
	border-radius: 8px;
	background: var(--modern-panel);
	box-shadow: 0 18px 44px rgba(23, 25, 28, 0.07);
}

.modern-capability-grid article {
	min-height: 280px;
	padding: 26px;
	display: grid;
	align-content: start;
	gap: 16px;
}

.modern-capability-grid span {
	color: var(--modern-red);
	font-size: 2.6rem;
	font-weight: 900;
}

.modern-capability-grid h3,
.modern-insight-stack h3,
.modern-pathway-grid h3,
.modern-poll-grid aside h3 {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.16;
}

.intelligence-section {
	background: #e9eee9;
}

.modern-insight-stack {
	display: grid;
	gap: 12px;
}

.modern-insight-stack article {
	min-height: 112px;
	padding: 20px;
	display: grid;
	grid-template-columns: 190px 1fr 110px;
	gap: 24px;
	align-items: center;
}

.modern-insight-stack span {
	color: var(--modern-green);
	font-weight: 900;
}

.modern-insight-stack p {
	margin: 0;
	font-weight: 800;
	text-align: right;
}

.modern-pathway-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.modern-pathway-grid button {
	min-height: 220px;
	padding: 0;
	overflow: hidden;
	font-weight: 900;
}

.modern-pathway-grid button span {
	display: block;
	padding: 14px 16px;
	text-align: left;
}

.modern-pathway-grid button img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	filter: grayscale(1);
}

.modern-pathway-grid button.active {
	border-color: var(--modern-green);
	box-shadow: inset 0 0 0 2px var(--modern-green);
}

.modern-pathway-grid article {
	grid-column: span 4;
	padding: 26px;
}

.modern-pathway-grid select {
	width: min(520px, 100%);
	min-height: 44px;
	margin: 16px 0;
	padding: 10px;
	background: var(--modern-field);
}

.modern-polls {
	background: var(--modern-ink);
	color: var(--white);
}

.modern-polls .eyebrow {
	color: #8bd5ad;
}

.modern-poll-grid {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(280px, 380px);
	gap: 24px;
}

.modern-polls .poll-card {
	background: #22262b;
	border-color: rgba(255, 255, 255, 0.12);
}

.modern-polls .poll-card p,
.modern-polls .poll-meta {
	color: rgba(255, 255, 255, 0.68);
}

.modern-polls .option-row {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}

.modern-poll-grid aside {
	padding: 24px;
	background: #f6f4ef;
	color: var(--modern-ink);
}

.modern-contact {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) auto;
	gap: 32px;
	align-items: center;
	padding: 88px clamp(20px, 6vw, 92px);
	background: var(--modern-panel);
}

.taharka-body {
	--t-ink: #07151b;
	--t-muted: #5f6c6f;
	--t-paper: #fbf7ef;
	--t-soft: #f3eee5;
	--t-blue: #0d2a35;
	--t-green: #1f5f53;
	--t-gold: #c9973e;
	--t-red: #b64227;
	background: var(--t-paper);
	color: var(--t-ink);
	font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
}

.taharka-header,
.taharka-footer {
	display: grid;
	grid-template-columns: 240px 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 16px clamp(18px, 6vw, 92px);
	background: rgba(251, 247, 239, 0.9);
	border-bottom: 1px solid rgba(7, 21, 27, 0.08);
	backdrop-filter: blur(16px);
}

.taharka-header {
	position: sticky;
	top: 0;
	z-index: 28;
}

.taharka-brand {
	display: grid;
	grid-template-columns: 32px 1fr;
	column-gap: 10px;
	align-items: center;
	width: fit-content;
}

.taharka-brand span {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	background: var(--t-blue);
	color: var(--white);
	border-radius: 50%;
	font-weight: 900;
}

.taharka-brand strong {
	font-size: 0.95rem;
	line-height: 1;
}

.taharka-brand small {
	grid-column: 2;
	color: var(--t-muted);
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
}

.taharka-header nav,
.taharka-footer nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 22px;
	color: var(--t-blue);
	font-size: 0.82rem;
	font-weight: 900;
}

.taharka-cta,
.taharka-contact a,
.taharka-actions a:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 11px 17px;
	background: var(--t-ink);
	color: var(--white);
	border: 1px solid var(--t-ink);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 900;
}

.taharka-hero {
	min-height: 860px;
	display: grid;
	grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 0.74fr);
	gap: clamp(36px, 7vw, 104px);
	align-items: start;
	padding: 100px clamp(18px, 7vw, 110px) 72px;
	background:
		radial-gradient(circle at 75% 19%, rgba(201, 151, 62, 0.24), transparent 15%),
		linear-gradient(180deg, #fffaf2, var(--t-paper));
}

.taharka-eyebrow {
	margin: 0 0 14px;
	color: var(--t-red);
	font-size: 0.72rem;
	font-weight: 1000;
	text-transform: uppercase;
}

.taharka-hero h1,
.taharka-position h2,
.taharka-section-heading h2,
.taharka-approach h2,
.taharka-audiences h2,
.taharka-pulse h2,
.taharka-contact h2 {
	margin: 0;
	letter-spacing: 0;
	line-height: 0.96;
}

.taharka-hero h1 {
	max-width: 660px;
	font-size: clamp(3.5rem, 8vw, 7.4rem);
	font-weight: 1000;
}

.taharka-hero-copy > p:not(.taharka-eyebrow),
.taharka-position > p,
.taharka-section-heading > p,
.taharka-approach p,
.taharka-audiences p,
.taharka-pulse p,
.taharka-contact p {
	color: var(--t-muted);
}

.taharka-hero-copy > p:not(.taharka-eyebrow) {
	max-width: 520px;
	margin: 24px 0 0;
	font-size: 1.05rem;
}

.taharka-actions,
.taharka-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.taharka-actions a:last-child,
.taharka-pills span,
.taharka-tabs button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 13px;
	background: var(--white);
	color: var(--t-blue);
	border: 1px solid rgba(7, 21, 27, 0.12);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 900;
}

.taharka-pills span {
	min-height: 28px;
	padding: 7px 12px;
	font-size: 0.66rem;
}

.strategy-card {
	position: relative;
	width: min(520px, 100%);
	margin-top: 90px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(7, 21, 27, 0.08);
	border-radius: 20px;
	box-shadow: 0 28px 80px rgba(7, 21, 27, 0.14);
}

.card-orbit {
	position: absolute;
	inset: -74px -60px auto auto;
	width: 260px;
	height: 260px;
	border: 1px solid rgba(13, 42, 53, 0.1);
	border-radius: 50%;
	pointer-events: none;
}

.strategy-card > p {
	width: fit-content;
	margin: 0 0 18px;
	padding: 8px 10px;
	color: var(--t-gold);
	background: rgba(201, 151, 62, 0.12);
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 1000;
	text-transform: uppercase;
}

.strategy-card h2 {
	max-width: 360px;
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 4rem);
	line-height: 0.95;
}

.strategy-card > span {
	display: block;
	max-width: 360px;
	margin-top: 18px;
	color: var(--t-muted);
}

.mini-lanes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.mini-lanes div {
	min-height: 92px;
	padding: 14px;
	background: var(--white);
	border: 1px solid rgba(7, 21, 27, 0.08);
	border-radius: 12px;
	box-shadow: 0 16px 32px rgba(7, 21, 27, 0.08);
}

.mini-lanes strong {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-bottom: 10px;
	background: var(--t-blue);
	color: var(--white);
	border-radius: 9px;
}

.mini-lanes small {
	color: var(--t-blue);
	font-weight: 900;
}

.taharka-position,
.taharka-approach,
.taharka-audiences,
.taharka-pulse {
	display: grid;
	grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
	gap: clamp(32px, 7vw, 96px);
	align-items: start;
	padding: 92px clamp(18px, 7vw, 110px);
}

.taharka-position h2,
.taharka-section-heading h2,
.taharka-approach h2,
.taharka-audiences h2,
.taharka-pulse h2,
.taharka-contact h2 {
	font-size: clamp(2.5rem, 5vw, 5.7rem);
}

.taharka-section,
.taharka-values {
	padding: 92px clamp(18px, 7vw, 110px);
}

.taharka-section-heading {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
	gap: 48px;
	align-items: end;
	margin-bottom: 34px;
}

.taharka-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.taharka-tabs button.active {
	background: var(--t-blue);
	color: var(--white);
}

.taharka-service-layout {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.taharka-service-layout article,
.approach-steps article,
.value-grid article,
.taharka-insight-grid article,
.taharka-pulse .poll-card {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(7, 21, 27, 0.1);
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(7, 21, 27, 0.07);
}

.taharka-service-layout article {
	padding: 26px;
}

.taharka-service-layout article > span,
.approach-steps article > span {
	color: var(--t-red);
	font-size: 2.4rem;
	font-weight: 1000;
}

.taharka-service-layout h3,
.approach-steps h3,
.value-grid h3,
.taharka-insight-grid h3,
.taharka-pulse h3 {
	margin: 10px 0 12px;
	font-size: 1.35rem;
	line-height: 1.12;
}

.taharka-service-layout p,
.value-grid p,
.taharka-insight-grid span {
	color: var(--t-muted);
}

.taharka-service-layout ul {
	margin: 18px 0 0;
	padding-left: 20px;
	color: var(--t-blue);
	font-weight: 800;
}

.taharka-approach {
	background:
		radial-gradient(circle at 74% 30%, rgba(31, 95, 83, 0.22), transparent 16%),
		linear-gradient(135deg, #0b2631, #173b3b);
	color: var(--white);
}

.taharka-approach .taharka-eyebrow,
.taharka-approach p {
	color: rgba(255, 255, 255, 0.72);
}

.approach-steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.approach-steps article {
	min-height: 220px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: none;
}

.approach-steps article > span {
	color: var(--t-gold);
}

.taharka-values,
.taharka-audiences {
	background: var(--t-soft);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.value-grid article {
	min-height: 190px;
	padding: 22px;
}

.audience-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.audience-list span {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 14px;
	background: var(--white);
	border: 1px solid rgba(7, 21, 27, 0.1);
	border-radius: 999px;
	color: var(--t-blue);
	font-weight: 900;
}

.taharka-insight-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.taharka-insight-grid article {
	min-height: 220px;
	padding: 22px;
	display: grid;
	align-content: end;
}

.taharka-insight-grid p {
	margin: 0;
	color: var(--t-green);
	font-size: 0.78rem;
	font-weight: 1000;
}

.taharka-pulse {
	background: var(--t-soft);
}

.taharka-pulse .poll-card {
	padding: 22px;
}

.taharka-contact {
	padding: 110px clamp(18px, 7vw, 110px);
	text-align: center;
	background: var(--white);
}

.taharka-contact p {
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

.taharka-contact a {
	margin-top: 22px;
}

.taharka-footer {
	position: sticky;
	bottom: 0;
	border-top: 1px solid rgba(7, 21, 27, 0.08);
	border-bottom: 0;
}

.taharka-footer p {
	margin: 0;
	color: var(--t-muted);
	font-size: 0.78rem;
}

@media (max-width: 980px) {
	.brand-rack {
		grid-template-columns: 1fr;
	}

	.brand-mark {
		order: -1;
		min-height: 96px;
	}

	.nav-cluster {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 16px 20px;
	}

	.flashline,
	.hero-grid,
	.split-heading,
	.section-heading,
	.developments-grid,
	.pathway-layout,
	.poll-workspace,
	.survey-card,
	.contact-grid,
	.admin-hero-grid,
	.admin-layout,
	.modern-header,
	.modern-hero,
	.modern-section-heading,
	.modern-poll-grid,
	.modern-contact,
	.taharka-header,
	.taharka-footer,
	.taharka-hero,
	.taharka-position,
	.taharka-section-heading,
	.taharka-approach,
	.taharka-audiences,
	.taharka-pulse {
		grid-template-columns: 1fr;
	}

	.modern-header nav,
	.taharka-header nav,
	.taharka-footer nav {
		justify-content: flex-start;
	}

	.flashline a:last-child,
	.contact-grid .button,
	.modern-header .button,
	.modern-contact .button {
		justify-self: start;
	}

	.taharka-cta {
		width: fit-content;
	}

	.hero {
		min-height: auto;
	}

	.service-grid,
	.insight-grid,
	.modern-capability-grid,
	.modern-strip,
	.taharka-service-layout,
	.value-grid,
	.taharka-insight-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.taharka-hero {
		min-height: auto;
	}

	.strategy-card {
		margin-top: 0;
	}

	.modern-map {
		min-height: 520px;
	}

	.modern-insight-stack article {
		grid-template-columns: 1fr;
	}

	.modern-insight-stack p {
		text-align: left;
	}

	.pathway-detail {
		position: static;
	}
}

@media (max-width: 680px) {
	.content-grid {
		width: min(100% - 28px, 1180px);
	}

	.section-band {
		padding: 52px 0;
	}

	.nav-cluster,
	.pathway-list,
	.service-grid,
	.insight-grid,
	.signal-grid,
	.footer-grid,
	.admin-header-grid,
	.admin-stat-grid,
	.modern-capability-grid,
	.modern-strip,
	.modern-pathway-grid,
	.taharka-service-layout,
	.approach-steps,
	.value-grid,
	.taharka-insight-grid,
	.mini-lanes {
		grid-template-columns: 1fr;
	}

	.admin-header nav,
	.taharka-header nav,
	.taharka-footer nav {
		justify-content: flex-start;
	}

	.flashline {
		gap: 8px;
		font-size: 0.78rem;
	}

	.flashline span {
		order: -1;
	}

	.hero h1 {
		font-size: 3.2rem;
	}

	.modern-hero-copy h1 {
		font-size: 3rem;
	}

	.taharka-hero h1 {
		font-size: 3.35rem;
	}

	.strategy-card h2 {
		font-size: 2.5rem;
	}

	.card-orbit {
		display: none;
	}

	.modern-map {
		min-height: 460px;
	}

	.map-node {
		min-width: 104px;
		min-height: 104px;
		font-size: 0.82rem;
	}

	.map-node-core {
		width: 158px;
		height: 158px;
	}

	.map-node-core img {
		width: 112px;
	}

	.modern-pathway-grid article {
		grid-column: auto;
	}

	.briefing-panel {
		padding: 16px;
	}

	.briefing-topline,
	.poll-meta {
		display: grid;
	}

	.pathway-card {
		min-height: 200px;
	}

	.footer-grid {
		justify-items: start;
	}
}
