:root {
	--color-bg: #07070a;
	--color-surface: #111114;
	--color-border: #27272a;
	--color-text-primary: #f5f1e6;
	--color-text-secondary: #9a9aa3;
	--color-accent: #c9a24b;
	--color-accent-muted: #8a6a2c;
	--font-display: 'Cinzel', ui-serif, Georgia, 'Times New Roman', serif;
	--font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

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

html {
	background-color: var(--color-bg);
}

body {
	min-height: 100vh;
	font-family: var(--font-sans);
	color: var(--color-text-primary);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5;
}

.page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	background-color: var(--color-bg);
}

.bg-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle 100vw at 50% 30%, rgba(201, 162, 75, 0.08) 0%, transparent 100%);
	pointer-events: none;
}

.main {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 1rem;
	position: relative;
}

.content {
	max-width: 42rem;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.mark-wrap {
	display: flex;
	justify-content: center;
}

.mark {
	width: 8rem;
	height: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent);
	filter: drop-shadow(0 10px 20px rgba(201, 162, 75, 0.25));
	animation: pulse-glow 6s ease-in-out infinite;
}

.mark-svg {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.name {
	margin: 0;
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-text-primary);
}

.title {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 300;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.tagline {
	margin: 0 auto;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text-secondary);
}

.status {
	margin: 1.5rem auto 0;
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 1.25rem;
	border: 1px solid var(--color-border);
	border-radius: 9999px;
	color: var(--color-text-secondary);
	font-size: 0.875rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.status-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background-color: var(--color-accent);
	box-shadow: 0 0 12px rgba(201, 162, 75, 0.7);
	animation: pulse-dot 2.4s ease-in-out infinite;
}

.footer {
	padding: 2rem 0;
	text-align: center;
	font-size: 0.875rem;
	color: rgba(154, 154, 163, 0.5);
	position: relative;
}

.footer p {
	margin: 0;
	letter-spacing: 0.05em;
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse-glow {
	0%,
	100% {
		filter: drop-shadow(0 10px 20px rgba(201, 162, 75, 0.25));
	}
	50% {
		filter: drop-shadow(0 10px 28px rgba(201, 162, 75, 0.45));
	}
}

@keyframes pulse-dot {
	0%,
	100% {
		opacity: 0.6;
		box-shadow: 0 0 6px rgba(201, 162, 75, 0.5);
	}
	50% {
		opacity: 1;
		box-shadow: 0 0 16px rgba(201, 162, 75, 0.9);
	}
}

.fade-in-up {
	animation: fade-in-up 0.8s ease-out both;
}

.delay-0 {
	animation-delay: 0ms;
}
.delay-1 {
	animation-delay: 150ms;
}
.delay-2 {
	animation-delay: 300ms;
}
.delay-3 {
	animation-delay: 450ms;
}
.delay-4 {
	animation-delay: 600ms;
}

@media (prefers-reduced-motion: reduce) {
	.fade-in-up,
	.mark,
	.status-dot {
		animation: none;
	}
}

@media (min-width: 768px) {
	.mark {
		width: 10rem;
		height: 10rem;
	}

	.name {
		font-size: 4.5rem;
	}

	.title {
		font-size: 1.25rem;
		line-height: 2rem;
	}

	.tagline {
		font-size: 1.125rem;
		line-height: 1.8;
	}
}
