.appSidebarIcon {
	display: block;
	height: 16px;
	width: 16px;
}

.appSidebar {
	backdrop-filter: blur(24px);
	background: rgba(15, 23, 42, 0.72);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	box-sizing: border-box;
	display: grid;
	grid-template-rows: auto 1fr auto;
	min-height: 100vh;
	padding: 24px 16px;
	position: sticky;
	top: 0;
	transition: padding 180ms ease;
}

.appSidebar--collapsed {
	padding-inline: 20px;
}

.appSidebar__brand {
	align-items: center;
	display: flex;
	min-height: 32px;
}

.appSidebar__nav {
	align-content: start;
	display: grid;
	gap: 8px;
	margin-top: 40px;
}

.appSidebar__footer {
	display: grid;
	gap: 8px;
}

.appSidebar__item {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 12px;
	box-sizing: border-box;
	color: #cbd5e1;
	cursor: pointer;
	display: grid;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	gap: 12px;
	grid-template-columns: 16px minmax(0, 1fr);
	min-height: 34px;
	padding: 8px;
	position: relative;
	text-decoration: none;
	transition:
		background 160ms ease,
		border-color 160ms ease,
		color 160ms ease;
}

.appSidebar__item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.appSidebar__item--primary {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6 52%, #ec4899);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 18px 36px rgba(139, 92, 246, 0.24);
	color: #ffffff;
}

.appSidebar__item--primary:hover {
	background: linear-gradient(135deg, #2563eb, #7c3aed 52%, #db2777);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 18px 36px rgba(139, 92, 246, 0.24);
	color: #ffffff;
}

.appSidebar__item--active {
	background: linear-gradient(
		90deg,
		rgba(59, 130, 246, 0.1),
		rgba(139, 92, 246, 0.1) 52%,
		rgba(236, 72, 153, 0.1)
	);
	color: #ffffff;
}

.appSidebar__item--active::before {
	background: linear-gradient(180deg, #3b82f6, #8b5cf6 52%, #ec4899);
	border-radius: 0 999px 999px 0;
	content: "";
	height: 28px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
}

.appSidebar__item--active .appSidebarIcon {
	color: #60a5fa;
	filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}

.appSidebar__item--muted {
	color: #94a3b8;
}

.appSidebar__item--collapse {
	margin-top: 8px;
}

.appSidebar__iconWrap {
	position: relative;
}

.appSidebar__badge {
	background: #ec4899;
	border: 2px solid rgba(15, 23, 42, 0.94);
	border-radius: 999px;
	height: 9px;
	position: absolute;
	right: -4px;
	top: -4px;
	width: 9px;
}

.appSidebar__label {
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.appSidebar--collapsed .appSidebar__brand {
	justify-content: center;
	padding-inline: 0;
}

.appSidebar--collapsed .appSidebar__item {
	gap: 0;
	grid-template-columns: 1fr;
	height: 36px;
	justify-items: center;
	padding-inline: 0;
	width: 36px;
}

.appSidebar--collapsed .appSidebar__item:not(.appSidebar__item--primary) {
	border-radius: 999px;
}

.appSidebar--collapsed .appSidebar__item--primary {
	border-radius: 999px;
}

.appSidebar--collapsed .appSidebar__item--active {
	border-radius: 999px;
}

.appSidebar--collapsed .appSidebar__item--active::before {
	display: none;
}

.appSidebar--collapsed .appSidebar__item:hover {
	background: rgba(255, 255, 255, 0.1);
}

.appSidebar--collapsed .appSidebar__item--active:hover {
	background: linear-gradient(
		90deg,
		rgba(59, 130, 246, 0.16),
		rgba(139, 92, 246, 0.16) 52%,
		rgba(236, 72, 153, 0.16)
	);
}

.appSidebar--collapsed .appSidebar__item--primary:hover {
	background: linear-gradient(135deg, #2563eb, #7c3aed 52%, #db2777);
}

.appSidebar--collapsed .appSidebar__label {
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

@media (max-width: 860px) {
	.appSidebar {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		border-right: 0;
		gap: 14px;
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
		min-height: auto;
		padding: 14px;
		position: static;
	}

	.appSidebar__brand {
		min-height: 40px;
		padding-inline: 0;
	}

	.appSidebar__nav {
		grid-column: 1 / -1;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		margin-top: 0;
	}

	.appSidebar__footer {
		align-items: center;
		display: flex;
		justify-content: flex-end;
	}

	.appSidebar__footer .appSidebar__label {
		height: 1px;
		overflow: hidden;
		position: absolute;
		width: 1px;
	}

	.appSidebar__item--collapse {
		display: none;
	}
}

@media (max-width: 560px) {
	.appSidebar__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.appSidebar__item {
		min-height: 42px;
		padding: 10px 12px;
	}
}

.appShell {
	background: #020617;
	color: #e2e8f0;
	font-family: "IBM Plex Sans", sans-serif;
	min-height: 100vh;
}

.appShell--empty {
	display: block;
}

.appShell--withSidebar {
	display: grid;
	grid-template-columns: 256px minmax(0, 1fr);
	transition: grid-template-columns 180ms ease;
}

.appShell--sidebarCollapsed {
	grid-template-columns: 80px minmax(0, 1fr);
}

.appShell__content {
	min-width: 0;
	padding: 32px;
}

@media (max-width: 860px) {
	.appShell--withSidebar {
		grid-template-columns: 1fr;
	}

	.appShell__content {
		padding: 20px;
	}
}

.homeScreenHeroContent__logo {
	margin-bottom: 32px;
}

.homeScreenHeroContent__headline {
	display: grid;
	gap: 16px;
	justify-items: center;
}

.homeScreenHeroContent__title {
	background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
	background-clip: text;
	color: transparent;
	font-size: 4.5rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
}

.homeScreenHeroContent__description {
	color: var(--hg-text-secondary);
	font-size: 1.25rem;
	line-height: 1.55;
	margin: 0;
	max-width: 672px;
}

.homeScreenHeroContent__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 32px;
	padding-top: 16px;
}

.homeScreenHeroContent__primaryAction,
.homeScreenHeroContent__secondaryAction {
	align-items: center;
	border-radius: 8px;
	display: inline-flex;
	font-size: 1.125rem;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	min-height: 56px;
	min-width: 176px;
	padding: 0 32px;
	text-decoration: none;
}

.homeScreenHeroContent__primaryAction {
	background: var(--hg-gradient-primary);
	box-shadow: 0 0 22px rgba(139, 92, 246, 0.42);
	color: #ffffff;
	position: relative;
}

.homeScreenHeroContent__primaryAction::before {
	background: var(--hg-gradient-primary);
	border-radius: inherit;
	content: "";
	filter: blur(16px);
	inset: 0;
	opacity: 0.6;
	position: absolute;
	z-index: -1;
}

.homeScreenHeroContent__primaryAction:hover::before {
	opacity: 0.8;
}

.homeScreenHeroContent__secondaryAction {
	background: var(--hg-glass-card);
	border: 1px solid var(--hg-glass-border);
	color: var(--hg-text-primary);
}

.homeScreenHeroContent__secondaryAction:hover {
	background: var(--hg-glass-card-hover);
}

@media (max-width: 760px) {
	.homeScreenHeroContent__title {
		font-size: 3rem;
	}

	.homeScreenHeroContent__description {
		font-size: 1.125rem;
	}
}

@media (max-width: 480px) {
	.homeScreenHeroContent__title {
		font-size: 2.5rem;
	}

	.homeScreenHeroContent__actions,
	.homeScreenHeroContent__primaryAction,
	.homeScreenHeroContent__secondaryAction {
		width: 100%;
	}
}

.homeScreenProductHighlight {
	animation: homeScreenFadeIn 0.4s ease-out both;
	display: flex;
	gap: 16px;
	padding: 24px;
	text-align: left;
}

.homeScreenProductHighlight:hover {
	background: var(--hg-glass-card-hover);
}

.homeScreenProductHighlight__icon {
	align-items: center;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
	border-radius: 8px;
	color: #60a5fa;
	display: inline-flex;
	flex: 0 0 auto;
	height: 48px;
	justify-content: center;
	position: relative;
	width: 48px;
}

.homeScreenProductHighlight__icon::before {
	background: var(--hg-gradient-primary);
	border-radius: inherit;
	content: "";
	filter: blur(14px);
	inset: 0;
	opacity: 0.35;
	position: absolute;
}

.homeScreenProductHighlight__icon svg {
	height: 24px;
	position: relative;
	width: 24px;
}

.homeScreenProductHighlight h2 {
	color: var(--hg-text-primary);
	font-size: 1.125rem;
	line-height: 1.45;
	margin: 0 0 8px;
}

.homeScreenProductHighlight p {
	color: var(--hg-text-secondary);
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 480px) {
	.homeScreenProductHighlight {
		padding: 20px;
	}
}

.homeScreenProductHighlights {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding-top: 64px;
}

@media (max-width: 760px) {
	.homeScreenProductHighlights {
		grid-template-columns: 1fr;
		padding-top: 48px;
	}
}

.homeScreen {
	--hg-bg-primary: #020617;
	--hg-glass-card: rgba(255, 255, 255, 0.05);
	--hg-glass-card-hover: rgba(255, 255, 255, 0.08);
	--hg-glass-border: rgba(255, 255, 255, 0.1);
	--hg-text-primary: #e2e8f0;
	--hg-text-secondary: #94a3b8;
	--hg-text-muted: #64748b;
	--hg-gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);

	background: var(--hg-bg-primary);
	color: var(--hg-text-primary);
	font-family: "IBM Plex Sans", sans-serif;
	min-height: 100vh;
	overflow: hidden;
	position: relative;
}

.homeScreen__container {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	padding: 48px 16px;
	position: relative;
	z-index: 1;
}

.homeScreen__hero {
	margin: 0 auto;
	max-width: 896px;
	text-align: center;
	width: 100%;
}

.homeScreen__footer {
	color: var(--hg-text-muted);
	font-size: 0.875rem;
	margin: 48px 0 0;
}

@keyframes homeScreenFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (max-width: 760px) {
	.homeScreen__container {
		align-items: flex-start;
		padding: 40px 16px;
	}
}

.serviceRouteScreen {
	align-items: center;
	background: #020617;
	color: #e2e8f0;
	display: flex;
	font-family: "IBM Plex Sans", sans-serif;
	justify-content: center;
	min-height: 100vh;
}

.serviceRouteScreen__status {
	color: #94a3b8;
	font-size: 1rem;
	margin: 0;
}



html,
body,
#root {
	background: #020617;
	margin: 0;
	min-height: 100%;
}

body {
	min-width: 320px;
}

* {
	box-sizing: border-box;
}

.app--loading {
	align-items: center;
	background: #020617;
	color: #e2e8f0;
	display: flex;
	font-family: Inter, system-ui, sans-serif;
	justify-content: center;
	min-height: 100vh;
	padding: 24px;
}

.app__status {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}
