:root {
	--bg: #08130f;
	--panel: rgba(15, 31, 26, 0.82);
	--text: #f2f7ef;
	--muted: #b7c7bc;
	--green: #67d66f;
	--line: rgba(207, 231, 215, 0.18);
	--shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
	--radius-lg: 34px;
	--radius-md: 22px;
	font-family: ui-sans-serif, "Trebuchet MS", "Avenir Next", Verdana, sans-serif;
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	background: var(--bg);
}

body {
	min-height: 100vh;
	margin: 0;
	color: var(--text);
	background:
		radial-gradient(circle at 18% 20%, rgba(58, 154, 83, 0.34), transparent 28rem),
		radial-gradient(circle at 82% 84%, rgba(92, 214, 111, 0.2), transparent 25rem),
		linear-gradient(135deg, #07110e 0%, #10261f 52%, #07120f 100%);
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 88%);
}

.skip-link {
	position: fixed;
	left: 1rem;
	top: 1rem;
	z-index: 20;
	transform: translateY(-150%);
	border-radius: 999px;
	padding: 0.75rem 1rem;
	background: var(--text);
	color: #092015;
	font-weight: 800;
	transition: transform 160ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-shell {
	display: grid;
	min-height: 100vh;
	place-items: center;
	padding: clamp(1.2rem, 4vw, 4rem);
}

.hero-card {
	position: relative;
	width: min(100%, 980px);
	padding: clamp(1.6rem, 5vw, 4.75rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(145deg, rgba(22, 55, 42, 0.58), rgba(9, 18, 16, 0.94)),
		var(--panel);
	box-shadow: var(--shadow);
	overflow: hidden;
	animation: card-in 700ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero-card::before,
.hero-card::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.hero-card::before {
	width: 24rem;
	height: 24rem;
	right: -8rem;
	top: -10rem;
	background: radial-gradient(circle, rgba(103, 214, 111, 0.22), transparent 68%);
}

.hero-card::after {
	width: 15rem;
	height: 15rem;
	left: -6rem;
	bottom: -7rem;
	background: radial-gradient(circle, rgba(79, 177, 103, 0.2), transparent 70%);
}

.brand-mark,
.primary-cta,
.status-grid article {
	position: relative;
	z-index: 1;
}

.brand-mark {
	display: grid;
	width: 74px;
	height: 74px;
	margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(103, 214, 111, 0.18), rgba(255, 255, 255, 0.04));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-mark img {
	width: 52px;
	height: 52px;
	filter: drop-shadow(0 8px 18px rgba(103, 214, 111, 0.18));
}

.eyebrow {
	position: relative;
	z-index: 1;
	margin: 0 0 0.75rem;
	color: var(--green);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

h1 {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0;
	font-size: clamp(2.6rem, 8vw, 6.4rem);
	line-height: 0.92;
	letter-spacing: -0.075em;
	text-wrap: balance;
}

.hero-copy {
	position: relative;
	z-index: 1;
	max-width: 690px;
	margin: clamp(1.15rem, 3vw, 1.75rem) 0 0;
	color: var(--muted);
	font-size: clamp(1rem, 2vw, 1.24rem);
	line-height: 1.65;
}

.cta-row {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 1rem 1.25rem;
	flex-wrap: wrap;
	margin-top: clamp(1.6rem, 4vw, 2.6rem);
}

.primary-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 54px;
	padding: 0.9rem 1.3rem 0.95rem 1.55rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--green), #34aa54);
	color: #07130d;
	font-weight: 950;
	text-decoration: none;
	box-shadow: 0 16px 40px rgba(42, 173, 76, 0.28);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 22px 50px rgba(42, 173, 76, 0.38);
}

.primary-cta svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cta-note {
	margin: 0;
	color: var(--muted);
	font-size: 0.98rem;
}

.status-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: clamp(2rem, 5vw, 4rem);
}

.status-grid article {
	padding: 1.15rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
	backdrop-filter: blur(10px);
}

.status-icon {
	display: inline-grid;
	min-width: 2.5rem;
	min-height: 2rem;
	margin-bottom: 1.25rem;
	place-items: center;
	border-radius: 999px;
	background: rgba(103, 214, 111, 0.13);
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 950;
	letter-spacing: 0.08em;
}

.status-grid h2 {
	margin: 0 0 0.55rem;
	font-size: 1.02rem;
	letter-spacing: -0.02em;
}

.status-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 0.94rem;
	line-height: 1.55;
}

@keyframes card-in {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}

@media (max-width: 760px) {
	.site-shell {
		align-items: start;
		padding: 1rem;
	}

	.hero-card {
		min-height: calc(100vh - 2rem);
		padding: 1.35rem;
		border-radius: 26px;
	}

	.brand-mark {
		width: 62px;
		height: 62px;
		border-radius: 20px;
	}

	h1 {
		letter-spacing: -0.06em;
	}

	.cta-row {
		align-items: stretch;
		flex-direction: column;
	}

	.primary-cta {
		width: 100%;
	}

	.status-grid {
		grid-template-columns: 1fr;
		margin-top: 2rem;
	}
}
