/*!
 * ORION MU — Shared UI components (Tier 1+ pages)
 * Namespace: .orion-* — consumed by page-specific CSS files
 */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
	--orion-bg: #0a0e18;
	--orion-panel: #121a2a;
	--orion-panel-2: #0f1626;
	--orion-border: #1e3a5f;
	--orion-gold: #d4af37;
	--orion-gold-hi: #f0d575;
	--orion-blue: #7eb8ff;
	--orion-text: #e8edf5;
	--orion-muted: #9aa3b5;
	--orion-radius: 10px;
	--orion-radius-sm: 6px;
	--orion-maxw: 1240px;
	--orion-font-head: 'Cinzel', Georgia, serif;
	--orion-font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Layout ---- */
.orion-wrap {
	width: 100%;
	max-width: var(--orion-maxw);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---- Hero strip ---- */
.orion-hero-strip {
	position: relative;
	border-bottom: 1px solid var(--orion-border);
	padding: 36px 0 40px;
	overflow: hidden;
	background:
		radial-gradient(1100px 300px at 50% -12%, rgba(126, 184, 255, .16), transparent 62%),
		radial-gradient(720px 260px at 88% 110%, rgba(212, 175, 55, .1), transparent 58%),
		radial-gradient(520px 200px at 8% 80%, rgba(126, 184, 255, .08), transparent 55%),
		linear-gradient(180deg, #0d1424 0%, #0b101d 52%, var(--orion-bg) 100%);
}

.orion-hero-strip::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, rgba(126, 184, 255, .045) 1px, transparent 1px),
		linear-gradient(rgba(126, 184, 255, .045) 1px, transparent 1px);
	background-size: 50px 50px;
	-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
	pointer-events: none;
}

.orion-hero-strip::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 72%, rgba(10, 14, 24, .88) 100%);
}

.orion-hero-strip .orion-wrap {
	position: relative;
	z-index: 1;
	text-align: center;
}

.orion-hero-strip__title {
	margin: 0;
	font-family: var(--orion-font-head);
	font-size: clamp(30px, 4.8vw, 48px);
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--orion-text);
	text-shadow: 0 2px 28px rgba(0, 0, 0, .55);
}

.orion-hero-strip__sub {
	margin: 10px 0 0;
	font-family: var(--orion-font-head);
	font-size: 1.05rem;
	color: var(--orion-blue);
	letter-spacing: .08em;
}

.orion-hero-strip__sub b,
.orion-hero-strip__sub strong {
	color: var(--orion-gold);
	font-weight: 700;
}

.orion-hero-strip__intro {
	max-width: 640px;
	margin: 14px auto 0;
	color: var(--orion-muted);
	font-size: .95rem;
	line-height: 1.65;
}

.orion-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 14px;
}

.orion-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(12, 18, 30, .72);
	border: 1px solid rgba(212, 175, 55, .32);
	color: var(--orion-text);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 999px;
	backdrop-filter: blur(8px);
}

.orion-pill__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--orion-gold);
	box-shadow: 0 0 10px var(--orion-gold);
	animation: orion-pill-pulse 2.4s ease-in-out infinite;
}

@keyframes orion-pill-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .55; transform: scale(.92); }
}

/* ---- Section ---- */
.orion-section {
	padding: 48px 0;
	border-bottom: 1px solid rgba(30, 58, 95, .35);
	scroll-margin-top: 100px;
}

.orion-section:last-child {
	border-bottom: none;
}

.orion-section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 32px;
}

.orion-section-head h2 {
	margin: 0;
	font-family: var(--orion-font-head);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 600;
	letter-spacing: .06em;
	color: var(--orion-text);
}

.orion-section-head h2::after {
	content: '';
	display: block;
	width: 64px;
	height: 3px;
	margin: 14px auto 0;
	background: linear-gradient(90deg, transparent, var(--orion-gold) 40%, var(--orion-blue) 100%);
	border-radius: 2px;
}

.orion-section-head p {
	margin: 14px 0 0;
	color: var(--orion-muted);
	font-size: .95rem;
	line-height: 1.6;
}

/* ---- Download card ---- */
.orion-dl-card {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .028), transparent 42%),
		var(--orion-panel);
	border: 1px solid var(--orion-border);
	border-radius: var(--orion-radius);
	padding: 24px 26px;
	margin-bottom: 16px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .02) inset, 0 8px 24px rgba(0, 0, 0, .28);
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.orion-dl-card:last-child {
	margin-bottom: 0;
}

.orion-dl-card--featured {
	border-color: rgba(212, 175, 55, .5);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, .04) inset,
		0 0 0 1px rgba(212, 175, 55, .16),
		0 16px 48px rgba(0, 0, 0, .4),
		0 0 72px rgba(212, 175, 55, .07);
}

.orion-dl-card--featured::before {
	content: '';
	position: absolute;
	top: 0;
	left: 18px;
	right: 18px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, var(--orion-gold) 35%, var(--orion-blue) 100%);
	pointer-events: none;
}

.orion-dl-card--featured::after {
	content: '';
	position: absolute;
	top: -48px;
	right: -48px;
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(212, 175, 55, .14), transparent 68%);
	pointer-events: none;
}

.orion-dl-card--empty {
	text-align: center;
	padding: 44px 32px;
}

.orion-dl-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--orion-gold-hi);
	background: rgba(212, 175, 55, .12);
	border: 1px solid rgba(212, 175, 55, .38);
	border-radius: 4px;
	padding: 4px 10px;
	margin-bottom: 12px;
}

.orion-dl-card__badge::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12M7 10l5 5 5-5M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12M7 10l5 5 5-5M5 21h14'/%3E%3C/svg%3E") center / contain no-repeat;
	opacity: .9;
}

.orion-dl-card__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.orion-dl-card__title {
	margin: 0;
	font-family: var(--orion-font-head);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--orion-text);
	letter-spacing: .05em;
}

.orion-dl-card__meta {
	font-size: .8rem;
	font-weight: 600;
	color: var(--orion-blue);
	background: rgba(15, 22, 38, .85);
	border: 1px solid rgba(126, 184, 255, .22);
	border-radius: 999px;
	padding: 5px 12px;
	white-space: nowrap;
}

.orion-dl-card__desc {
	margin: 0 0 16px;
	color: var(--orion-muted);
	font-size: .9rem;
	line-height: 1.55;
}

.orion-dl-card__note {
	margin: 12px 0 0;
	font-size: .8rem;
	color: var(--orion-muted);
	font-style: italic;
}

.orion-dl-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.orion-dl-card__mirrors {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.orion-dl-card__mirrors-label {
	width: 100%;
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--orion-muted);
	margin-top: 8px;
}

/* ---- Buttons ---- */
.orion-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--orion-font-body);
	font-weight: 600;
	font-size: .875rem;
	letter-spacing: .06em;
	padding: 11px 22px;
	border-radius: var(--orion-radius-sm);
	border: 1px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.orion-btn--gold {
	background: linear-gradient(180deg, var(--orion-gold-hi) 0%, var(--orion-gold) 100%);
	color: #1a1305;
	border-color: var(--orion-gold);
	box-shadow: 0 6px 18px rgba(212, 175, 55, .28);
}

.orion-btn--gold:hover,
.orion-btn--gold:focus {
	background: var(--orion-gold-hi);
	color: #1a1305;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(212, 175, 55, .38);
}

.orion-btn--ghost {
	background: transparent;
	color: var(--orion-gold);
	border-color: rgba(212, 175, 55, .45);
}

.orion-btn--ghost:hover,
.orion-btn--ghost:focus {
	background: rgba(212, 175, 55, .08);
	color: var(--orion-gold-hi);
	border-color: var(--orion-gold);
	text-decoration: none;
	transform: translateY(-1px);
}

/* Button isolation — page-level link colors must not override CTAs */
a.orion-btn,
a.orion-btn:hover,
a.orion-btn:focus,
button.orion-btn {
	text-decoration: none;
}

a.orion-btn--gold,
a.orion-btn--gold:hover,
a.orion-btn--gold:focus,
button.orion-btn--gold {
	color: #1a1305 !important;
}

a.orion-btn--ghost,
a.orion-btn--ghost:hover,
a.orion-btn--ghost:focus {
	color: var(--orion-gold) !important;
}

a.orion-btn--ghost:hover,
a.orion-btn--ghost:focus {
	color: var(--orion-gold-hi) !important;
}

.orion-btn--sm {
	font-size: .8rem;
	padding: 7px 14px;
}

/* ---- Requirements table ---- */
.orion-req-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
}

.orion-req-table th,
.orion-req-table td {
	padding: 12px 16px;
	border: 1px solid var(--orion-border);
	text-align: left;
}

.orion-req-table thead th {
	background: var(--orion-panel-2);
	color: var(--orion-gold);
	font-family: var(--orion-font-head);
	font-weight: 600;
	font-size: .8rem;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.orion-req-table tbody td:first-child {
	color: var(--orion-text);
	font-weight: 600;
	width: 28%;
}

.orion-req-table tbody td {
	color: var(--orion-muted);
	background: var(--orion-panel);
}

.orion-req-footnote {
	margin-top: 14px;
	font-size: .8rem;
	color: var(--orion-muted);
	font-style: italic;
}

/* ---- Step list ---- */
.orion-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: orion-step;
}

.orion-steps li {
	position: relative;
	counter-increment: orion-step;
	padding: 0 0 20px 52px;
	border-left: 2px solid var(--orion-border);
	margin-left: 16px;
}

.orion-steps li:last-child {
	padding-bottom: 0;
	border-left-color: transparent;
}

.orion-steps li::before {
	content: counter(orion-step);
	position: absolute;
	left: -17px;
	top: 0;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	font-weight: 700;
	font-size: .85rem;
	color: #0a0e18;
	background: var(--orion-gold);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(212, 175, 55, .15);
}

.orion-steps li strong {
	display: block;
	color: var(--orion-text);
	font-size: .95rem;
	margin-bottom: 4px;
}

.orion-steps li span,
.orion-steps li p {
	margin: 0;
	color: var(--orion-muted);
	font-size: .875rem;
	line-height: 1.55;
}

.orion-steps li a {
	color: var(--orion-gold);
	font-weight: 600;
}

.orion-steps li a:hover {
	color: var(--orion-gold-hi);
}

.orion-steps-foot {
	margin-top: 20px;
	font-size: .875rem;
	color: var(--orion-muted);
}

.orion-steps-foot a {
	font-weight: 600;
}

/* ---- Callout ---- */
.orion-callout {
	background: rgba(212, 175, 55, .06);
	border: 1px solid rgba(212, 175, 55, .35);
	border-left: 4px solid var(--orion-gold);
	border-radius: var(--orion-radius-sm);
	padding: 18px 20px;
}

.orion-callout__title {
	margin: 0 0 10px;
	font-family: var(--orion-font-head);
	font-size: 1rem;
	font-weight: 600;
	color: var(--orion-gold-hi);
	letter-spacing: .04em;
}

.orion-callout p {
	margin: 0 0 10px;
	color: var(--orion-muted);
	font-size: .9rem;
	line-height: 1.6;
}

.orion-callout p:last-child {
	margin-bottom: 0;
}

.orion-callout ul {
	margin: 10px 0 0;
	padding-left: 18px;
	color: var(--orion-muted);
	font-size: .875rem;
}

.orion-callout ul li {
	margin-bottom: 4px;
}

/* ---- Issue list ---- */
.orion-issues {
	display: grid;
	gap: 12px;
}

.orion-issue {
	background: var(--orion-panel);
	border: 1px solid var(--orion-border);
	border-radius: var(--orion-radius-sm);
	padding: 14px 18px;
}

.orion-issue__q {
	margin: 0 0 6px;
	font-weight: 600;
	font-size: .9rem;
	color: var(--orion-text);
}

.orion-issue__a {
	margin: 0;
	font-size: .875rem;
	color: var(--orion-muted);
	line-height: 1.55;
}

.orion-issue__a a {
	font-weight: 600;
}

/* ---- Support CTA ---- */
.orion-support-cta {
	text-align: center;
	background: var(--orion-panel);
	border: 1px solid var(--orion-border);
	border-radius: var(--orion-radius);
	padding: 32px 28px;
}

.orion-support-cta h3 {
	margin: 0 0 10px;
	font-family: var(--orion-font-head);
	font-size: 1.25rem;
	color: var(--orion-text);
}

.orion-support-cta p {
	max-width: 520px;
	margin: 0 auto 20px;
	color: var(--orion-muted);
	font-size: .9rem;
	line-height: 1.6;
}

.orion-support-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

/* ---- Footer CTA ---- */
.orion-footer-cta {
	text-align: center;
	padding: 56px 0;
	background:
		radial-gradient(800px 260px at 50% 120%, rgba(126, 184, 255, .1), transparent 60%),
		var(--orion-panel-2);
	border-top: 1px solid var(--orion-border);
}

.orion-footer-cta h3 {
	margin: 0;
	font-family: var(--orion-font-head);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	color: var(--orion-text);
	letter-spacing: .04em;
}

.orion-footer-cta p {
	max-width: 560px;
	margin: 14px auto 22px;
	color: var(--orion-muted);
	font-size: .9rem;
	line-height: 1.6;
}

.orion-footer-cta__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.orion-footer-cta__login {
	margin-top: 18px;
	font-size: .875rem;
	color: var(--orion-muted);
}

.orion-footer-cta__login a {
	font-weight: 600;
	color: var(--orion-gold);
}

.orion-footer-cta__login a:hover,
.orion-footer-cta__login a:focus {
	color: var(--orion-gold-hi);
}

.orion-gold {
	color: var(--orion-gold);
}

/* ---- Global site footer (Premium Footer V1) ---- */
.orion-site-footer {
	background:
		radial-gradient(900px 320px at 12% 0%, rgba(126, 184, 255, .08), transparent 58%),
		radial-gradient(720px 280px at 88% 100%, rgba(212, 175, 55, .06), transparent 55%),
		linear-gradient(180deg, var(--orion-panel-2) 0%, var(--orion-bg) 100%);
	border-top: 1px solid var(--orion-border);
	padding: 48px 0 0;
}

.orion-site-footer__inner {
	padding-bottom: 28px;
}

.orion-site-footer__grid {
	display: grid;
	grid-template-columns: minmax(180px, 1.35fr) repeat(3, minmax(140px, 1fr));
	gap: 36px 32px;
	align-items: start;
}

.orion-site-footer__col--brand {
	max-width: 280px;
}

.orion-site-footer__brand-link {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	text-decoration: none;
	color: var(--orion-text);
	transition: color .15s ease;
}

.orion-site-footer__brand-link:hover,
.orion-site-footer__brand-link:focus {
	color: var(--orion-gold-hi);
	text-decoration: none;
}

.orion-site-footer__logo {
	display: block;
	width: 96px;
	height: auto;
	filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .35));
}

.orion-site-footer__title {
	font-family: var(--orion-font-head);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--orion-gold);
	line-height: 1.2;
}

.orion-site-footer__tagline {
	margin: 12px 0 0;
	font-size: .82rem;
	line-height: 1.55;
	color: var(--orion-muted);
	letter-spacing: .04em;
}

.orion-site-footer__heading {
	margin: 0 0 14px;
	font-family: var(--orion-font-head);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--orion-gold);
}

.orion-site-footer__links {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.orion-site-footer__links li + li {
	margin-top: 10px;
}

.orion-site-footer__links a {
	color: var(--orion-muted);
	font-size: .875rem;
	line-height: 1.45;
	text-decoration: none;
	transition: color .15s ease;
}

.orion-site-footer__links a:hover,
.orion-site-footer__links a:focus {
	color: var(--orion-gold-hi);
	text-decoration: none;
}

.orion-site-footer__links--social a {
	color: var(--orion-text);
	font-weight: 500;
}

.orion-site-footer__links--social a:hover,
.orion-site-footer__links--social a:focus {
	color: var(--orion-gold-hi);
}

.orion-site-footer__bottom {
	margin-top: 40px;
	padding: 22px 0 28px;
	border-top: 1px solid var(--orion-border);
	text-align: center;
}

.orion-site-footer__copyright,
.orion-site-footer__legal {
	height: auto;
	min-height: 0;
	margin-left: auto;
	margin-right: auto;
}

.orion-site-footer__copyright {
	margin: 0 0 6px;
	font-family: var(--orion-font-head);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--orion-text);
	line-height: 1.4;
}

.orion-site-footer__legal {
	margin: 0;
	max-width: 640px;
	font-size: .75rem;
	line-height: 1.6;
	color: var(--orion-muted);
	opacity: .85;
}

@media (max-width: 991px) {
	.orion-site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
	}

	.orion-site-footer__col--brand {
		grid-column: 1 / -1;
		max-width: none;
	}
}

@media (max-width: 575px) {
	.orion-site-footer {
		padding-top: 36px;
	}

	.orion-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.orion-site-footer__bottom {
		margin-top: 28px;
		padding-bottom: 24px;
	}
}
