:root {
	--nn-theme-bg: #ffffff;
	--nn-theme-ink: #111827;
	--nn-theme-muted: #6b7280;
	--nn-theme-border: #e5e7eb;
	--nn-theme-emerald: #059669;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	scroll-behavior: smooth;
}

body.nn-site {
	min-height: 100%;
	margin: 0;
	background: var(--nn-theme-bg);
	color: var(--nn-theme-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

.nn-main {
	min-height: 100vh;
}

.nn-site--funnel .nn-main {
	display: block;
}

.nn-front-app {
	min-height: 100vh;
	background: #ffffff;
}

.nn-skip-link {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 100000;
	padding: 0.7rem 1rem;
	border-radius: 999px;
	background: #111827;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	transform: translateY(-160%);
	transition: transform 160ms ease;
}

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

.nn-plugin-missing,
.nn-page {
	width: min(100% - 2rem, 780px);
	margin: 0 auto;
	padding: 5rem 0;
}

.nn-plugin-missing {
	min-height: 100vh;
	display: grid;
	align-content: center;
	text-align: center;
}

.nn-plugin-missing h1,
.nn-page__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: 0;
}

.nn-plugin-missing p,
.nn-page__content {
	color: var(--nn-theme-muted);
	font-size: 1.08rem;
}

.nn-page__article {
	padding: 2rem 0;
}

.nn-page__content > *:first-child {
	margin-top: 0;
}

.nn-page__content > *:last-child {
	margin-bottom: 0;
}
