/*
Theme Name: Parameter Staging
Theme URI: https://thestaginglink.com
Description: Simple Parameter-branded landing page for the staging link environment. Static, single-page, no dependencies.
Author: Parameter
Author URI: https://parameterllc.com
Version: 1.0.0
Text Domain: parameter-staging
*/

:root {
	--parameter-surface: #ffffff;
	--parameter-border: #e5e7eb;
	--parameter-text: #0f172a;
	--parameter-subtle: #475569;
	--parameter-brand: #7a5af8;
	--parameter-brand-strong: #4e2de3;
	--parameter-ink: #0b0f1d;
	--radius: 12px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font: 16px / 1.65 "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Helvetica, Arial, sans-serif;
	color: var(--parameter-text);
	background: var(--parameter-ink);
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: #fff;
	color: var(--parameter-brand-strong);
	padding: 10px 16px;
	border-radius: 8px;
	z-index: 10;
}
.skip-link:focus {
	left: 16px;
	top: 16px;
}

/* Full-viewport centered stage */
.staging-stage {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 48px 24px;
	text-align: center;
	overflow: hidden;
}

/* Ambient brand glow */
.staging-stage::before,
.staging-stage::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.55;
	z-index: 0;
	pointer-events: none;
}
.staging-stage::before {
	width: 520px;
	height: 520px;
	top: -160px;
	left: -120px;
	background: radial-gradient(circle, rgba(122, 90, 248, 0.7), transparent 70%);
}
.staging-stage::after {
	width: 480px;
	height: 480px;
	bottom: -180px;
	right: -120px;
	background: radial-gradient(circle, rgba(78, 45, 227, 0.6), transparent 70%);
}

/* Subtle grid texture */
.staging-grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(circle at center, #000 0%, transparent 80%);
	-webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 80%);
	pointer-events: none;
}

.staging-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 640px;
}

.staging-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 40px;
}
.staging-logo img {
	height: 40px;
	width: auto;
	display: block;
}

.staging-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	margin-bottom: 28px;
	border-radius: 999px;
	background: rgba(122, 90, 248, 0.14);
	border: 1px solid rgba(122, 90, 248, 0.35);
	color: #c7b8ff;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.staging-badge .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #7a5af8;
	box-shadow: 0 0 0 4px rgba(122, 90, 248, 0.25);
	animation: staging-pulse 2s ease-in-out infinite;
}
@keyframes staging-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.8); }
}

.staging-title {
	margin: 0 0 18px;
	font-size: clamp(2rem, 6vw, 3.25rem);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #ffffff;
}
.staging-title .accent {
	background: linear-gradient(90deg, #a78bff, #7a5af8);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.staging-copy {
	margin: 0 auto 36px;
	max-width: 480px;
	font-size: 1.075rem;
	color: #cbd5e1;
}

.staging-card {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 22px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #e2e8f0;
	font-size: 0.98rem;
	text-align: left;
}
.staging-card svg {
	flex: 0 0 auto;
	color: #a78bff;
}
.staging-card strong {
	color: #ffffff;
	font-weight: 600;
}

.staging-actions {
	margin-top: 36px;
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.staging-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.staging-btn-primary {
	background: var(--parameter-brand);
	color: #ffffff;
}
.staging-btn-primary:hover {
	background: #6d4eed;
	transform: translateY(-1px);
}
.staging-btn-ghost {
	background: transparent;
	color: #e2e8f0;
	border: 1px solid rgba(255, 255, 255, 0.18);
}
.staging-btn-ghost:hover {
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-1px);
}

.staging-footer {
	position: relative;
	z-index: 1;
	margin-top: 56px;
	font-size: 0.82rem;
	color: #64748b;
}
.staging-footer a {
	color: #94a3b8;
	text-decoration: none;
}
.staging-footer a:hover {
	color: #cbd5e1;
}

@media (max-width: 480px) {
	.staging-logo { margin-bottom: 28px; }
	.staging-card { width: 100%; }
}
