.gl-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.gl-header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--gl-header-h);
	background: rgba(16, 18, 20, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.gl-header__inner {
	max-width: var(--gl-maxw);
	margin: 0 auto;
	height: 100%;
	padding: 0 clamp(20px, 4vw, 56px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.gl-header__logo { display: flex; align-items: center; }

.gl-nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.4vw, 32px);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gl-nav__link { color: var(--gl-text-dark); }
.gl-nav__link:hover, .gl-nav__link.current-menu-item { color: var(--gl-green); }
.gl-nav__cta { padding: 11px 20px; font-size: 14px; }

.gl-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}
.gl-header__toggle span {
	display: block;
	height: 2px;
	background: var(--gl-text-dark);
	border-radius: 1px;
}

.gl-footer {
	background: var(--gl-black);
	color: var(--gl-text-light-3);
	padding: 32px 0;
	font-size: 12px;
	margin-top: auto;
}
.gl-footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.gl-footer__nav a {
	color: var(--gl-text-light-3);
	margin-left: 16px;
}
.gl-footer__nav a:hover { color: var(--gl-green); }

/* Mobile nav: original design has no documented breakpoint for the header —
   this is a gap we're filling in, not something from the source .dc.html.
   Below 860px the inline nav collapses behind a hamburger toggle. */
@media (max-width: 860px) {
	.gl-header__toggle { display: flex; }
	.gl-nav {
		position: fixed;
		top: var(--gl-header-h);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--gl-black-2);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}
	.gl-nav.is-open { max-height: 320px; }
	.gl-nav__link, .gl-nav__cta {
		padding: 16px clamp(20px, 4vw, 56px);
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}
	.gl-nav__cta { transform: none; }
	.gl-nav__cta > span { transform: none; }
}
