.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
	padding: 16px clamp(18px, 4vw, 56px);
	background: rgba(250, 250, 249, 0.96);
	border-bottom: 1px solid #d6d3d1;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
	font-size: 20px;
	font-weight: 800;
	color: black;
}

.eyebrow {
	margin: 0 0 10px;
	color: #99f6e4;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.lead {
	max-width: 700px;
	margin: 14px 0 0;
	color: #f8fafc;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.6;
}

.status-panel {
	display: grid;
	gap: 1px;
	overflow: hidden;
	color: #0f172a;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 8px;
	box-shadow: 0 20px 65px rgba(0, 0, 0, 0.24);
}

.status-panel div {
	padding: 14px 16px;
	background: white;
}

.status-panel h2, .status-panel span, .status-panel strong {
	display: block;
	margin: 0;
	color: #475569;
}

.status-panel strong {
	margin-top: 6px;
	font-size: 20px;
	color: #0f172a;
}