:root {
	--brand: #80bc00;
	--ink: #d9e2cd;
	--muted: #8e9981;
	--surface: #10140d;
	--surface-2: #161c11;
	--line: rgba(128, 188, 0, 0.22);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	min-height: 100svh;
	font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
	color: var(--ink);
	background: radial-gradient(circle at 18% 14%, #1a2312 0%, #0c1009 55%, #090c07 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-bg {
	position: fixed;
	top: 50%;
	left: 50%;
	width: min(92vw, 920px);
	height: min(92vw, 920px);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(128, 188, 0, 0.11) 0%, rgba(128, 188, 0, 0) 68%);
	pointer-events: none;
}

.page-wrap {
	position: relative;
	width: min(960px, 100%);
	padding: 26px;
	text-align: center;
}

header {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 18px;
}

.logo {
	display: inline-flex;
	padding: 8px 10px;
	border-radius: 12px;
	margin-left: 40px;
}

.logo svg {
	display: block;
	width: 150px;
	height: auto;
}

h1 {
	margin: 0;
	font-size: clamp(0.98rem, 2vw, 1.16rem);
	letter-spacing: 0.11em;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--brand);
	text-align: center;
}

.well {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.box {
	padding: 16px;
	animation: card-in 320ms ease both;
}

.single {
	grid-column: 1 / -1;
}

.line + .line {
	margin-top: 14px;
}

label {
	display: block;
	margin-bottom: 7px;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--muted);
	text-align: center;
}

.data-wrap {
	display: block;
}

.data-value {
	padding: 12px 14px;
	border-radius: 10px;
	font-family: "SF Mono", "Menlo", "Consolas", monospace;
	font-size: clamp(0.94rem, 1.85vw, 1.08rem);
	line-height: 1.5;
	color: #d7e8ba;
	word-break: break-all;
	cursor: copy;
	text-align: center;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.data-value:hover {
	background: rgba(12, 18, 9, 0.9);
}

.data-value.copied {
	background: rgba(128, 188, 0, 0.12);
	color: #e7f7cc;
}

.line:first-child .data-value {
	font-size: clamp(1.35rem, 3.05vw, 2.05rem);
	line-height: 1.28;
	font-weight: 560;
	color: #f2f9e7;
}

footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 14px;
	padding-top: 12px;
	font-size: 0.8rem;
	letter-spacing: 0.02em;
}

.copy-note {
	margin-top: 12px;
	min-height: 1.1rem;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(128, 188, 0, 0.95);
	opacity: 0;
	visibility: hidden;
	transform: translateY(3px);
	pointer-events: none;
	transition: opacity 150ms ease, transform 150ms ease;
}

.copy-note.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

a {
	color: #b8ce8c;
	text-decoration: none;
}

a:hover {
	color: #def1bc;
}

@keyframes card-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 780px) {
	.page-wrap {
		padding: 14px;
	}

	header {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		margin-bottom: 12px;
	}

	h1 {
		text-align: center;
	}

	.well {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	footer {
		flex-direction: column;
		align-items: center;
		margin-top: 12px;
		gap: 6px;
	}
}
