:root {
	--olive: #3a4a1e;
	--olive-lt: #546a2a;
	--gunmetal: #1c2b3a;
	--steel: #2a4055;
	--gold: #b8872a;
	--gold-lt: #d4a840;
	--sky: #1a6a8a;
	--cream: #fdfaf5;
	--gray-lt: #f2f0ec;
	--gray: #e0ddd8;
	--mid: #8a8580;
	--dark: #0a1008;
	--text: #1e2410;

	--nav-h: 68px;
	--r: 10px;
	--shadow: 0 6px 28px rgba(26, 40, 20, 0.14);
	--trans: all 0.3s ease;
}

/* ── NAV ── */
nav {
	background: var(--gunmetal);
}
.nav-links a {
	color: rgba(255, 255, 255, 0.78);
}
.nav-links a:hover {
	color: #fff;
}
.nav-cta {
	background: var(--gold);
	border-radius: 4px;
}
.nav-cta:hover {
	background: var(--gold-lt) !important;
}

/* ── HERO ── */
.hero {
	/* background: linear-gradient(
		160deg,
		var(--gunmetal) 0%,
		var(--olive) 55%,
		#0a1a2e 100%
	); */
	background: url('https://cleargazetest.com/img/Military-Aviation.png') center no-repeat, var(--gunmetal);
	background-size: cover;
	min-height: calc(100vh - 200px);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}
.hero-container {
	color: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
	align-items: center;
	min-height: calc(100vh - 253px);
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(184, 135, 42, 0.2);
	border: 1px solid rgba(184, 135, 42, 0.35);
	border-radius: 4px;
	padding: 0.35rem 0.94rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-lt);
	margin-bottom: 1.4rem;
}
.hero h1 {
	font-size: clamp(2rem, 3.5vw, 3rem);
	line-height: 1.22;
	margin-bottom: 1.2rem;
	max-width: 535px;
}
.hero h1 em {
	font-style: italic;
	color: var(--gold-lt);
}
.hero-lead {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	opacity: 0.88;
	max-width: 585px;
	margin-bottom: 2rem;
	line-height: 1.8;
}
.hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.btn-primary,
.btn-outline {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	font-weight: 800;
	display: flex;
	align-items: center;
}

.btn-primary {
	background: var(--gold);
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	transition: var(--trans);
	box-shadow: 0 4px 16px rgba(184, 135, 42, 0.4);
	letter-spacing: 0.04em;
}
.btn-primary:hover {
	background: var(--gold-lt);
	transform: translateY(-2px);
}
.btn-outline {
	border: 2px solid rgba(255, 255, 255, 0.45);
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	transition: var(--trans);
}
.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

/* Hero right: HUD-style readiness panel */
.hud-panel {
	background: rgba(0, 0, 0, 0.45);
	border-radius: 8px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	position: relative;
}
.hud-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 1.2rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(184, 135, 42, 0.25);
}
.hud-title {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-lt);
}
.hud-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.7rem;
	text-wrap-mode: nowrap;
	color: #5ae8a0;
}
.status-dot {
	min-width: 8px;
	min-height: 8px;
	border-radius: 50%;
	background: #5ae8a0;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.35;
	}
}
.hud-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.55rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 14px;
}
.hud-panel > div .hud-row:last-of-type {
	border-bottom: none;
}
.hud-param {
	color: rgba(255, 255, 255, 0.6);
}
.hud-val {
	color: #5ae8a0;
	font-weight: 600;
}
.hud-val.warn {
	color: var(--gold-lt);
}
.hud-val.alert {
	color: #e05050;
}
.hud-footer {
	margin-top: 1rem;
	padding-top: 0.8rem;
	border-top: 1px solid rgba(184, 135, 42, 0.25);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.hud-result {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--gold-lt);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.hud-time {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
}

.threat-card,
.mission-card,
.bm-card,
.agency-card,
.faq-item {
	opacity: 0;
	transform: translateY(20px);
}

.threat-card.fade-in-up,
.mission-card.fade-in-up,
.bm-card.fade-in-up,
.agency-card.fade-in-up,
.faq-item.fade-in-up {
	opacity: 1;
	transform: translateY(0);
	transition: 0.6s ease;
}

.flow-step {
	opacity: 0;
}

.flow-step.fade-in-delay {
	opacity: 1;
	transition: 0.6s ease;
}

.nvg-stat {
	opacity: 0;
	transform: translateX(-100%);
}

.nvg-stat.fade-in-slide-right {
	opacity: 1;
	transform: translateX(0);
	transition: 0.6s ease;
}

.table,
#military-aviation-form {
	opacity: 0;
}

.table.fade-in,
#military-aviation-form.fade-in {
	opacity: 1;
	transition: 0.6s ease;
}

.contact-item {
	opacity: 0;
	transform: translateX(100%);
}

.contact-item.fade-in-slide-left {
	opacity: 1;
	transform: translateX(0);
	transition: 0.6s ease;
}

/* ── ALERT BAND ── */
.alert-band {
	background: var(--olive);
	color: var(--gold-lt);
	padding: 15px;
	font-size: 0.9rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.03em;
	border-bottom: 2px solid var(--gold);
}

/* ── STATS BAND ── */
.stats-band {
	background: var(--gunmetal);
}
.stats-band-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
	color: #fff;
}
.stat-cell {
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-cell:last-child {
	border-right: none;
}
.stat-num {
	font-size: clamp(26px, calc(22.541px + 1.081vw), 38px);
	font-weight: 700;
	color: var(--gold-lt);
	line-height: 1;
}
.stat-label {
	font-size: 0.9rem;
	opacity: 0.75;
	margin-top: 0.4rem;
	line-height: 1.4;
}

.readiness {
	padding: var(--vertical-padding) 0;
}

/* ── SECTION ── */
.section-label {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--olive);
	margin-bottom: 0.6rem;
}
h2 {
	font-size: clamp(24px, calc(19.964px + 1.261vw), 38px);
	color: var(--gunmetal);
	line-height: 1.25;
	margin-bottom: 1rem;
}
.section-sub {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--mid);
	max-width: 650px;
	margin-bottom: 3rem;
	line-height: 1.75;
}

/* ── THREAT CARDS ── */
.threat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.threat-card {
	background: #fff;
	border: 1px solid var(--gray);
	border-radius: var(--r);
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	box-shadow: var(--shadow);
	transition: var(--trans);
	border-top: 4px solid var(--olive);
}
.threat-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(26, 40, 20, 0.16);
}
.threat-icon {
	font-size: clamp(29px, calc(27.27px + 0.541vw), 35px);
	margin-bottom: 0.8rem;
}
.threat-card h3 {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--gunmetal);
	margin-bottom: 0.5rem;
}
.threat-card p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--mid);
	line-height: 1.65;
}

/* ── MISSION PROFILES ── */
.mission-profiles {
	padding: var(--vertical-padding) 0;
	background: var(--gray-lt);
}
.mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}
.mission-card {
	background: #fff;
	border: 1px solid var(--gray);
	border-radius: var(--r);
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.2rem;
	transition: var(--trans);
}
.mission-card:hover {
	transform: translateY(-2px);
}
.mission-rank {
	font-size: clamp(24px, calc(21.694px + 0.721vw), 32px);
	font-weight: 600;
	color: var(--gold);
	line-height: 1;
}
.mission-card h3 {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--gunmetal);
	margin-bottom: 0.45rem;
}
.mission-card p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--mid);
	line-height: 1.6;
}
.mission-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.7rem;
}
.mission-tag {
	background: var(--gray-lt);
	color: var(--olive);
	font-size: 12px;
	font-weight: 700;
	padding: 0.2rem 0.65rem;
	border-radius: 4px;
	letter-spacing: 0.04em;
}

/* ── DARK SECTION ── */
.dark-section {
	padding: var(--vertical-padding) 0;
	background: var(--gunmetal);
	color: #fff;
}
.dark-section .section-label {
	color: var(--gold-lt);
}
.dark-section h2 {
	color: #fff;
}
.dark-section .section-sub {
	color: rgba(255, 255, 255, 0.68);
}

/* ── BIOMARKER GRID ── */
.biomarker-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.bm-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(184, 135, 42, 0.2);
	border-radius: var(--r);
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	transition: var(--trans);
}
.bm-card:hover {
	background: rgba(255, 255, 255, 0.11);
	border-color: rgba(184, 135, 42, 0.35);
}
.bm-num {
	font-size: 14px;
	color: var(--gold-lt);
	font-weight: 600;
	margin-bottom: 0.4rem;
}
.bm-name {
	font-size: clamp(18px, calc(17.423px + 0.18vw), 20px);
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.4rem;
}
.bm-desc {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.55;
}
.bm-ops {
	font-size: 13px;
	color: var(--gold-lt);
	font-style: italic;
	margin-top: 0.5rem;
}

/* ── ASSESSMENT FLOW ── */
.assessment-protocol {
	padding: var(--vertical-padding) 0;
}
.flow-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}
.flow-grid::before {
	content: '';
	position: absolute;
	top: clamp(27px, calc(25.559px + 0.45vw), 32px);
	left: 12.5%;
	right: 12.5%;
	height: 3px;
	background: linear-gradient(90deg, var(--olive), var(--gold));
	z-index: 0;
}
.flow-step {
	text-align: center;
	padding: 0 1rem;
	position: relative;
	z-index: 1;
}
.flow-num {
	width: clamp(45px, calc(40.676px + 1.351vw), 60px);
	height: clamp(45px, calc(40.676px + 1.351vw), 60px);
	border-radius: 50%;
	background: var(--olive);
	color: #fff;
	font-size: clamp(20px, calc(18.559px + 0.45vw), 25px);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.flow-step h4 {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--gunmetal);
	margin-bottom: 0.4rem;
}
.flow-step p {
	font-size: 14px;
	color: var(--mid);
	line-height: 1.55;
}

/* ── AGENCY GRID ── */
.agency-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.agency-card {
	background: #fff;
	border-radius: var(--r);
	padding: clamp(15px, calc(11.364px + 1.136vw), 25px);
	box-shadow: var(--shadow);
	transition: var(--trans);
}
.agency-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(26, 40, 20, 0.12);
}
.agency-badge {
	display: inline-block;
	background: var(--olive);
	color: var(--gold-lt);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 8px;
	border-radius: 3px;
	margin-bottom: 0.8rem;
}
.agency-card h3 {
	font-size: clamp(16px, calc(14.847px + 0.36vw), 20px);
	color: var(--gunmetal);
	margin-bottom: 0.5rem;
}
.agency-card p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--mid);
	line-height: 1.6;
}

/* ── IMPAIRMENT TABLE ── */
.compare-wrap {
	overflow-x: auto;
	border-radius: var(--r);
	box-shadow: var(--shadow);
}
.yes {
	color: #1a7a50;
	font-weight: 700;
}
.no {
	color: #c0392b;
}
.part {
	color: var(--gold);
	font-weight: 600;
}

/* ── NVG SECTION ── */
.nvg {
	background: var(--olive);
	color: #fff;
	padding: var(--vertical-padding) 0;
}
.nvg .section-label {
	color: var(--gold-lt);
}
.nvg h2 {
	color: #fff;
	margin-bottom: 30px;
}
.nvg .section-sub {
	color: rgba(255, 255, 255, 0.72);
}
.nvg-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}
.nvg-stat-stack {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}
.nvg-stat {
	background: rgba(0, 0, 0, 0.25);
	border-radius: var(--r);
	padding: clamp(15px, calc(11.364px + 1.136vw), 25px);
	display: grid;
	grid-template-columns: clamp(104px, calc(94.198px + 3.063vw), 138px) 1fr;
	align-items: center;
	gap: 1.2rem;
}
.nvg-stat-num {
	font-size: clamp(24px, calc(22.27px + 0.541vw), 30px);
	font-weight: 700;
	color: var(--gold-lt);
}
.nvg-stat-text {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	opacity: 0.85;
	line-height: 1.55;
}
.nvg-prose h3 {
	font-size: clamp(18px, calc(16.27px + 0.541vw), 24px);
	color: #fff;
	margin-bottom: 1rem;
}
.nvg-prose p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	opacity: 0.82;
	line-height: 1.75;
	margin-bottom: 1rem;
}

.vs {
	padding: var(--vertical-padding) 0;
	background: var(--gray-lt);
}

.agencies {
	padding: var(--vertical-padding) 0;
}
/* ── QUOTE BAND ── */
.quote-band {
	background: var(--steel);
	padding: var(--vertical-padding) 0;
}
.quote-band-wrapper {
	color: #fff;
	text-align: center;
}
.quote-band blockquote {
	font-size: clamp(18px, calc(16.545px + 0.455vw), 22px);
	font-style: italic;
	margin: 0 auto 1rem;
	line-height: 1.65;
	opacity: 0.95;
}
.quote-attr {
	font-size: 14px;
	opacity: 0.6;
}

/* ── FAQ ── */
.faq {
	background: var(--gray-lt);
	padding: var(--vertical-padding) 0;
}

/* ── CONTACT ── */
.contact {
	background: var(--gunmetal);
	color: #fff;
	padding: var(--vertical-padding) 0;
}
.contact .section-label {
	color: var(--gold-lt);
}
.contact h2 {
	color: #fff;
}
.contact .section-sub {
	color: rgba(255, 255, 255, 0.7);
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	overflow: hidden;
}
.contact-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}
.contact-icon {
	width: clamp(34px, calc(31.117px + 0.901vw), 44px);
	height: clamp(34px, calc(31.117px + 0.901vw), 44px);
	background: rgba(184, 135, 42, 0.15);
	border: 1px solid rgba(184, 135, 42, 0.25);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(15px, calc(13.559px + 0.45vw), 20px);
	flex-shrink: 0;
}
.contact-item h4 {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--gold-lt);
	margin-bottom: 0.2rem;
}
.contact-item p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	opacity: 0.78;
	line-height: 1.5;
}

.contact-form-btn {
	background: var(--gold);
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	font-weight: 800;
	cursor: pointer;
	letter-spacing: 0.04em;
	transition: 0.3s ease;
}

.contact-form-btn:hover {
	background: var(--gold-lt);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
	.biomarker-grid,
	.agency-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 945px) {
	.stats-band-wrapper {
    grid-template-columns: repeat(2, 1fr);
	}
	.stat-cell:nth-of-type(1),
	.stat-cell:nth-of-type(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	.stat-cell:nth-of-type(2) {
		border-right: none;
	}
}
@media (max-width: 900px) {
	.hero {
		padding-bottom: 50px;
	}
	.stats-band {
		grid-template-columns: repeat(2, 1fr);
	}
	.stat-cell:nth-child(2) {
		border-right: none;
	}
	.stat-cell:nth-child(3) {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	.threat-grid {
		grid-template-columns: 1fr;
	}
	.mission-grid {
		grid-template-columns: 1fr;
	}
	.flow-grid {
		grid-template-columns: 1fr 1fr;
		gap: 25px;
	}
	.flow-grid::before {
		display: none;
	}
	.flow-step {
		padding: 0;
	}
	.nvg-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 895px) {
	.hero-container {
    grid-template-columns: 1fr;
		gap: 45px;
	}
	.hero-lead {
    max-width: 100%;
	}
}
@media (max-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 600px) {
	.biomarker-grid,
	.agency-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 560px) {
	.flow-grid {
		grid-template-columns: 1fr;
	}
	.stats-band {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 475px) {
	.stats-band-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
	.stat-cell:nth-of-type(1), 
	.stat-cell:nth-of-type(3) {
		border-right: none;
	}
	.stat-cell:not(:last-of-type) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	.mission-card {
    grid-template-columns: 1fr;
    gap: 10px;
	}
}
@media (max-width: 390px) {
	.nvg-stat {
    grid-template-columns: 1fr;
    gap: 15px;
	}
}
