:root {
	--bg: #0b0f1a;
	--bg-alt: #111827;
	--ink: #f8fafc;
	--muted: #9aa4b2;
	--accent: #00c6a7;
	--accent-strong: #1de9b6;
	--warm: #f0b429;
	--border: rgba(255, 255, 255, 0.12);
	--shadow: 0 24px 60px rgba(7, 10, 18, 0.45);
	--radius-lg: 32px;
	--radius-md: 18px;
	--radius-em: 12px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: sans-serif;
	color: var(--ink);
	background: var(--bg);
	min-height: 100vh;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

main {
	padding: 120px 8vw 80px;
	display: flex;
	flex-direction: column;
	gap: 120px;
}

.site-header {
	position: fixed;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;	
	padding: 12px 20px;
	width: min(1100px, 90vw);
	background: rgba(8, 11, 20, 0.7);
	border: 1px solid var(--border);
	border-radius: 999px;
	backdrop-filter: blur(18px);
	z-index: 10;
}

.logo {
	font-family: serif;
	font-size: 20px;
	letter-spacing: 1px;
	background: linear-gradient(120deg, var(--accent), var(--warm));
	-webkit-background-clip: text;	
	color: transparent;
	font-weight: 700;
}

.site-nav {
	display: flex;		
	gap: 20px;
	align-items: center;
	font-size: 15px;
	color: var(--muted);
}

.site-nav a {
	position: relative;
	padding: 6px 12px;
	transition: color 0.3s ease;
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 12px;
	bottom: 2px;
	width: 0;
	height: 2px;
	background: linear-gradient(120deg, var(--accent), var(--warm));
	transition: width 0.3s ease;
}

.site-nav a:hover {
	color: var(--ink);
}

.site-nav a:hover::after {
	width: calc(100% - 24px);
}

.hero {
	display: grid;
	gap: 60px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: center;
}

.hero-content h1 {
	font-family: serif;
	font-size: clamp(2.6rem, 4vw, 4.4rem);
	line-height: 1.05;
	margin-bottom: 24px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	color: var(--accent-strong);
	margin-bottom: 24px;
}

.lead {
	font-size: 18px;
	color: var(--muted);
	max-width: 540px;
	margin-bottom: 32px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 36px
}

.btn {
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;	
}

.btn.primary {
	background: linear-gradient(120deg, var(--accent), var(--warm));
	color: #041016;
	box-shadow: 0 16px 30px rgba(0, 198, 167, 0.25);
}

.btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 38px rgba(0, 198, 167, 0.35);
}

.meta-label {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--muted);
	letter-spacing: 2px;
}

.meta-value {
	display: block;
	font-weight: 600;
	margin-top: 6px;
}

.hero-card {
	background: linear-gradient(140deg, rgba(255,255,255,0.15), rgba(255, 255, 255, 0.03));
	border-radius: var(--radius-lg);
	padding: 32px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.hero-card-top {
	margin-bottom: 32px;
}

.card-title {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 11px;
	color: var(--muted);
	margin-bottom: 12px;
}

.card-name {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
}

.card-desc {
	color: var(--muted);
}

.hero-card-bottom {
	display: grid;
	gap: 18px;
	border-top: 1px solid var(--border);
	padding-top: 20px;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	animation: reveal 0.8s ease forwards;
	animation-delay: var(--delay, 0ms);
}

@keyframes reveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
