.nn-funnel {
	--nn-bg: #ffffff;
	--nn-surface: #ffffff;
	--nn-soft: #f8fafc;
	--nn-soft-2: #f3f4f6;
	--nn-border: #e5e7eb;
	--nn-ink: #111827;
	--nn-muted: #6b7280;
	--nn-muted-2: #9ca3af;
	--nn-emerald: #059669;
	--nn-emerald-dark: #047857;
	--nn-emerald-soft: #d1fae5;
	--nn-teal: #0d9488;
	--nn-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
	min-height: 100vh;
	background: var(--nn-bg);
	color: var(--nn-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

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

.nn-funnel button,
.nn-funnel input,
.nn-funnel select {
	font: inherit;
}

.nn-funnel button {
	cursor: pointer;
}

.nn-screen {
	min-height: 100vh;
	padding: 1.5rem;
}

.nn-screen--center {
	display: grid;
	place-items: center;
	text-align: center;
}

.nn-landing {
	width: min(100%, 520px);
	margin: 0 auto;
	animation: nn-fade-in 600ms ease both;
}

.nn-logo-mark,
.nn-loading-mark {
	width: 5rem;
	height: 5rem;
	margin: 0 auto 1.5rem;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: #d1fae5;
	color: var(--nn-emerald);
	box-shadow: 0 18px 45px rgba(16, 185, 129, 0.18);
}

.nn-logo-mark svg,
.nn-loading-mark svg {
	width: 2.5rem;
	height: 2.5rem;
}

.nn-landing__title {
	margin: 0 0 1rem;
	font-size: clamp(2.5rem, 9vw, 3.6rem);
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0;
}

.nn-gradient-text {
	background: linear-gradient(90deg, #10b981, #14b8a6);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nn-landing__copy {
	max-width: 31rem;
	margin: 0 auto 2.5rem;
	color: var(--nn-muted);
	font-size: 1.08rem;
}

.nn-primary-btn,
.nn-dark-btn,
.nn-ghost-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	width: 100%;
	min-height: 3.25rem;
	padding: 0.95rem 1.35rem;
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nn-primary-btn {
	width: auto;
	min-width: 14rem;
	background: var(--nn-emerald);
	color: #ffffff;
	box-shadow: 0 18px 35px rgba(5, 150, 105, 0.22);
}

.nn-primary-btn:hover,
.nn-primary-btn:focus-visible,
.nn-dark-btn:hover,
.nn-dark-btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 24px 45px rgba(15, 23, 42, 0.2);
}

.nn-primary-btn:hover {
	background: var(--nn-emerald-dark);
}

.nn-primary-btn svg,
.nn-dark-btn svg,
.nn-ghost-btn svg {
	width: 1.15rem;
	height: 1.15rem;
}

.nn-social-proof {
	margin: 1.5rem 0 0;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--nn-muted-2);
	font-size: 0.9rem;
}

.nn-social-proof svg {
	width: 1rem;
	height: 1rem;
}

.nn-quiz {
	min-height: 100vh;
	background: #f9fafb;
}

.nn-quiz__inner {
	width: min(100%, 680px);
	margin: 0 auto;
	padding: 1.25rem 0 3rem;
}

.nn-quiz__top {
	display: grid;
	grid-template-columns: 2.75rem 1fr 2.75rem;
	align-items: center;
	margin-bottom: 1.35rem;
}

.nn-icon-btn {
	width: 2.75rem;
	height: 2.75rem;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--nn-muted);
	transition: background 160ms ease, color 160ms ease;
}

.nn-icon-btn:hover,
.nn-icon-btn:focus-visible {
	background: #e5e7eb;
	color: var(--nn-ink);
}

.nn-icon-btn svg {
	width: 1.35rem;
	height: 1.35rem;
}

.nn-step-count {
	justify-self: center;
	color: var(--nn-emerald);
	font-weight: 800;
	font-size: 0.9rem;
}

.nn-progress {
	height: 0.62rem;
	border-radius: 999px;
	background: #e5e7eb;
	overflow: hidden;
	margin: 0 0 2rem;
}

.nn-progress__bar {
	height: 100%;
	border-radius: inherit;
	background: var(--nn-emerald);
	transition: width 420ms ease;
}

.nn-question-title {
	margin: 0 0 1.7rem;
	font-size: clamp(2rem, 7vw, 3rem);
	line-height: 1.05;
	font-weight: 900;
	letter-spacing: 0;
	animation: nn-slide-up 420ms ease both;
}

.nn-question-desc {
	margin: -0.8rem 0 1.5rem;
	color: var(--nn-muted);
}

.nn-options {
	display: grid;
	gap: 1rem;
}

.nn-option {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1rem;
	min-height: 5.5rem;
	padding: 1rem;
	border: 2px solid var(--nn-border);
	border-radius: 1.25rem;
	background: #ffffff;
	text-align: left;
	color: var(--nn-ink);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nn-option:hover,
.nn-option:focus-visible {
	border-color: #a7f3d0;
	background: #fbfffd;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.nn-option.is-selected {
	border-color: var(--nn-emerald);
	background: #ecfdf5;
	box-shadow: 0 16px 30px rgba(16, 185, 129, 0.12);
	transform: scale(1.015);
}

.nn-option__icon {
	flex: 0 0 auto;
	width: 3.25rem;
	height: 3.25rem;
	display: grid;
	place-items: center;
	border-radius: 1rem;
	background: #f3f4f6;
	color: var(--nn-muted);
}

.nn-option.is-selected .nn-option__icon {
	background: #d1fae5;
	color: var(--nn-emerald);
}

.nn-option__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.nn-option__body {
	min-width: 0;
	flex: 1;
}

.nn-option__label {
	display: block;
	font-weight: 900;
	font-size: 1.1rem;
}

.nn-option__desc {
	display: block;
	margin-top: 0.18rem;
	color: var(--nn-muted);
	font-size: 0.92rem;
}

.nn-option__check {
	flex: 0 0 auto;
	color: var(--nn-emerald);
}

.nn-profile-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.nn-field {
	display: grid;
	gap: 0.4rem;
	text-align: left;
}

.nn-field--full {
	grid-column: 1 / -1;
}

.nn-field span {
	color: #374151;
	font-weight: 800;
	font-size: 0.92rem;
}

.nn-field input,
.nn-field select {
	width: 100%;
	min-height: 3.35rem;
	padding: 0.85rem 1rem;
	border: 2px solid var(--nn-border);
	border-radius: 1rem;
	background: #ffffff;
	color: var(--nn-ink);
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.nn-field input:focus,
.nn-field select:focus {
	border-color: var(--nn-emerald);
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

.nn-profile-actions {
	margin-top: 1.25rem;
}

.nn-error {
	margin: 0.8rem 0;
	color: #b91c1c;
	font-weight: 700;
}

.nn-loading {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 1.5rem;
	background: var(--nn-emerald);
	color: #ffffff;
	text-align: center;
	transition: background 500ms ease;
}

.nn-loading__spinner {
	position: relative;
	width: 6rem;
	height: 6rem;
	margin: 0 auto 2rem;
}

.nn-loading__spinner::before,
.nn-loading__spinner::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 999px;
	border: 4px solid rgba(255, 255, 255, 0.24);
}

.nn-loading__spinner::after {
	border-color: #ffffff;
	border-top-color: transparent;
	animation: nn-spin 1s linear infinite;
}

.nn-loading-mark {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 3rem;
	height: 3rem;
	background: transparent;
	color: #ffffff;
	box-shadow: none;
	animation: nn-pulse 1.2s ease-in-out infinite;
}

.nn-loading h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.55rem, 6vw, 2rem);
	line-height: 1.1;
	font-weight: 900;
}

.nn-loading p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.nn-results {
	min-height: 100vh;
	padding-bottom: 4rem;
	background: #f9fafb;
}

.nn-results-hero {
	padding: 4rem 1.5rem 6rem;
	text-align: center;
	color: #ffffff;
	border-bottom-left-radius: 3rem;
	border-bottom-right-radius: 3rem;
	box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.nn-results-hero--lose_weight {
	background: linear-gradient(135deg, #fb923c, #ef4444);
}

.nn-results-hero--build_muscle {
	background: linear-gradient(135deg, #60a5fa, #4f46e5);
}

.nn-results-hero--energy,
.nn-results-hero--default {
	background: linear-gradient(135deg, #34d399, #0d9488);
}

.nn-eyebrow {
	margin: 0 0 0.45rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.78rem;
	font-weight: 900;
	opacity: 0.88;
}

.nn-results-hero h1 {
	margin: 0 0 0.9rem;
	font-size: clamp(2.35rem, 8vw, 3.5rem);
	line-height: 1;
	font-weight: 950;
	letter-spacing: 0;
}

.nn-results-hero p:last-child {
	max-width: 32rem;
	margin: 0 auto;
	font-size: 1.05rem;
	opacity: 0.9;
}

.nn-results__body {
	width: min(100% - 2rem, 680px);
	margin: -3.2rem auto 0;
}

.nn-card {
	border-radius: 1.5rem;
	background: #ffffff;
	box-shadow: var(--nn-shadow);
	padding: 1.4rem;
	animation: nn-slide-up 560ms ease both;
}

.nn-card + .nn-card {
	margin-top: 1rem;
}

.nn-card h2,
.nn-card h3 {
	margin: 0 0 1.2rem;
	font-weight: 900;
	letter-spacing: 0;
}

.nn-card h3 {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 1.25rem;
}

.nn-card h3 svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--nn-emerald);
}

.nn-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin-bottom: 1.2rem;
}

.nn-stat {
	min-height: 6rem;
	padding: 1rem;
	border: 1px solid #edf2f7;
	border-radius: 1.1rem;
	background: #f9fafb;
}

.nn-stat span {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--nn-muted);
	font-size: 0.85rem;
	font-weight: 800;
}

.nn-stat strong {
	display: block;
	font-size: clamp(1.35rem, 5vw, 1.85rem);
	line-height: 1.05;
}

.nn-stat small {
	color: var(--nn-muted);
	font-weight: 500;
}

.nn-macro-top {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.55rem;
	color: var(--nn-muted);
	font-size: 0.9rem;
	font-weight: 800;
}

.nn-badge {
	display: inline-flex;
	padding: 0.18rem 0.5rem;
	border-radius: 999px;
	background: #d1fae5;
	color: #047857;
	font-size: 0.72rem;
	font-weight: 900;
}

.nn-macro-bar {
	display: flex;
	height: 1rem;
	gap: 0.18rem;
	overflow: hidden;
	border-radius: 999px;
	background: #f3f4f6;
}

.nn-macro {
	min-width: 0;
}

.nn-macro--carbs {
	background: #818cf8;
}

.nn-macro--protein {
	background: #fb7185;
}

.nn-macro--fat {
	background: #f59e0b;
}

.nn-macro-labels {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: 0.55rem;
	font-size: 0.78rem;
	font-weight: 800;
}

.nn-macro-labels span:nth-child(1) {
	color: #6366f1;
}

.nn-macro-labels span:nth-child(2) {
	color: #e11d48;
}

.nn-macro-labels span:nth-child(3) {
	color: #d97706;
}

.nn-disclaimer {
	margin: 1rem 0 0;
	color: var(--nn-muted);
	font-size: 0.86rem;
}

.nn-cta-card {
	position: relative;
	margin-top: 1rem;
	padding: 1.8rem;
	overflow: hidden;
	border-radius: 1.5rem;
	background: linear-gradient(90deg, #10b981, #0d9488);
	color: #ffffff;
	text-align: center;
	box-shadow: 0 18px 40px rgba(13, 148, 136, 0.24);
}

.nn-cta-card::after {
	content: "";
	position: absolute;
	top: -1.5rem;
	right: -1.5rem;
	width: 8rem;
	height: 8rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
}

.nn-cta-card h2 {
	position: relative;
	z-index: 1;
	margin: 0 0 0.65rem;
	font-size: clamp(1.6rem, 5vw, 2rem);
	line-height: 1.08;
}

.nn-cta-card p {
	position: relative;
	z-index: 1;
	margin: 0 auto 1.25rem;
	max-width: 30rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.96rem;
}

.nn-email-form {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.75rem;
}

.nn-email-form input {
	width: 100%;
	min-height: 3.35rem;
	padding: 0.9rem 1rem;
	border: 0;
	border-radius: 1rem;
	color: var(--nn-ink);
	font-weight: 700;
	outline: none;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

.nn-email-form input:focus {
	box-shadow: 0 0 0 4px rgba(209, 250, 229, 0.55);
}

.nn-dark-btn {
	border-radius: 1rem;
	background: #111827;
	color: #ffffff;
}

.nn-dark-btn:disabled,
.nn-primary-btn:disabled {
	cursor: progress;
	opacity: 0.7;
	transform: none;
}

.nn-privacy-note {
	margin: 0.85rem 0 0 !important;
	color: rgba(209, 250, 229, 0.9) !important;
	font-size: 0.78rem !important;
}

.nn-ghost-btn {
	margin-top: 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 1rem;
	background: #ffffff;
	color: #374151;
}

.nn-reset-btn {
	display: block;
	margin: 1rem auto 0;
	border: 0;
	background: transparent;
	color: var(--nn-muted);
	text-decoration: underline;
}

.nn-modal-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: end center;
	padding: 1rem;
	background: rgba(17, 24, 39, 0.62);
	backdrop-filter: blur(10px);
	animation: nn-fade-in 180ms ease both;
}

.nn-modal {
	width: min(100%, 720px);
	max-height: min(92vh, 880px);
	overflow: auto;
	border-radius: 1.6rem;
	background: #ffffff;
	box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
	animation: nn-modal-up 260ms ease both;
}

.nn-modal__header {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.2rem 1.2rem 0.8rem;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid #f3f4f6;
}

.nn-modal__header h2 {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.12;
	letter-spacing: 0;
}

.nn-modal__header p {
	margin: 0.35rem 0 0;
	color: var(--nn-muted);
	font-size: 0.92rem;
}

.nn-modal__body {
	padding: 1.1rem 1.2rem 1.3rem;
}

.nn-booking-section + .nn-booking-section {
	margin-top: 1.2rem;
}

.nn-booking-section h3 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
}

.nn-date-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(8.6rem, 1fr));
	gap: 0.65rem;
}

.nn-date-btn,
.nn-time-btn {
	border: 2px solid var(--nn-border);
	border-radius: 1rem;
	background: #ffffff;
	color: var(--nn-ink);
	font-weight: 800;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nn-date-btn {
	padding: 0.8rem;
	text-align: left;
}

.nn-date-btn span {
	display: block;
	color: var(--nn-muted);
	font-size: 0.8rem;
	font-weight: 700;
}

.nn-date-btn.is-selected,
.nn-time-btn.is-selected {
	border-color: var(--nn-emerald);
	background: #ecfdf5;
	color: #065f46;
}

.nn-time-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(5.4rem, 1fr));
	gap: 0.55rem;
}

.nn-time-btn {
	min-height: 2.8rem;
}

.nn-booking-form {
	display: grid;
	gap: 0.85rem;
}

.nn-booking-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

.nn-terms {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
	color: #374151;
	font-size: 0.88rem;
	text-align: left;
}

.nn-terms input {
	margin-top: 0.18rem;
}

.nn-terms a {
	color: #047857;
	font-weight: 800;
}

.nn-confirmation {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 1.5rem;
	background: #f9fafb;
	text-align: center;
}

.nn-confirmation__card {
	width: min(100%, 560px);
	padding: 2rem;
	border-radius: 1.6rem;
	background: #ffffff;
	box-shadow: var(--nn-shadow);
}

.nn-confirmation__icon {
	width: 5rem;
	height: 5rem;
	display: grid;
	place-items: center;
	margin: 0 auto 1.25rem;
	border-radius: 999px;
	background: #dcfce7;
	color: #047857;
}

.nn-confirmation__icon svg {
	width: 2.4rem;
	height: 2.4rem;
}

.nn-confirmation h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 7vw, 2.8rem);
	line-height: 1;
}

.nn-confirmation p {
	color: var(--nn-muted);
}

.nn-empty {
	padding: 1rem;
	border-radius: 1rem;
	background: #f9fafb;
	color: var(--nn-muted);
	font-weight: 700;
	text-align: center;
}

@keyframes nn-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

@keyframes nn-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes nn-pulse {
	50% {
		opacity: 0.55;
		transform: scale(0.92);
	}
}

@keyframes nn-modal-up {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (min-width: 760px) {
	.nn-screen {
		padding: 3rem;
	}

	.nn-quiz__inner {
		padding-top: 2rem;
	}

	.nn-modal-backdrop {
		place-items: center;
	}
}

@media (max-width: 520px) {
	.nn-screen {
		padding: 1.25rem;
	}

	.nn-profile-grid,
	.nn-stats,
	.nn-booking-grid {
		grid-template-columns: 1fr;
	}

	.nn-option {
		align-items: flex-start;
	}

	.nn-results-hero {
		border-bottom-left-radius: 2rem;
		border-bottom-right-radius: 2rem;
	}

	.nn-results__body {
		width: min(100% - 1rem, 680px);
	}

	.nn-modal-backdrop {
		padding: 0.5rem;
	}

	.nn-modal {
		border-radius: 1.35rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nn-funnel *,
	.nn-funnel *::before,
	.nn-funnel *::after {
		animation-duration: 1ms !important;
		transition-duration: 1ms !important;
		scroll-behavior: auto !important;
	}
}
