:root {
	--asia-bg: #ffffff;
	--asia-surface: #ffffff;
	--asia-surface-selected: #f4f8fe;
	--asia-surface-hover: #f8faff;
	--asia-surface-soft: #f5f7fb;
	--asia-ink: #071739;
	--asia-muted: #627291;
	--asia-soft: #8a98b1;
	--asia-line: #d9e1ed;
	--asia-line-strong: #c6d2e2;
	--asia-accent: #ff2824;
	--asia-accent-dark: #e51c18;
	--asia-on-accent: #ffffff;
	--asia-link: #0754c9;
	--asia-green: #32be55;
	--asia-blue: #168bd3;
	--asia-radius: 5px;
	--asia-shadow: 0 8px 32px rgba( 7, 23, 57, 0.09 );
	--asia-font: Inter, "Segoe UI", "Noto Sans", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

html {
	background: var( --asia-bg );
	scroll-behavior: smooth;
}

body.asia-directory-shell {
	min-width: 320px;
	background: var( --asia-bg );
	color: var( --asia-ink );
	font-family: var( --asia-font );
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

button,
input,
select {
	font: inherit;
}

button,
a,
input,
select,
summary {
	-webkit-tap-highlight-color: transparent;
}

button {
	color: inherit;
}

a {
	color: var( --asia-link );
}

.asia-sr-only,
.asia-skip-link:not( :focus ) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect( 0, 0, 0, 0 ) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.asia-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10000;
	padding: 10px 14px;
	background: var( --asia-ink );
	color: #fff;
	border-radius: var( --asia-radius );
}

:where( button, a, input, select, summary ):focus-visible {
	outline: 3px solid rgba( 7, 84, 201, 0.28 );
	outline-offset: 2px;
}

.asia-app-main {
	min-height: 100vh;
}

.asia-header {
	position: relative;
	z-index: 30;
	display: flex;
	align-items: stretch;
	height: 62px;
	padding: 0 29px;
	background: var( --asia-surface );
	border-bottom: 1px solid var( --asia-line );
}

.asia-brand {
	display: flex;
	align-items: center;
	gap: 24px;
	color: var( --asia-ink );
	text-decoration: none;
	white-space: nowrap;
}

.asia-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 29px;
	height: 34px;
	color: var( --asia-accent );
}

.asia-brand__mark .asia-icon {
	width: 29px;
	height: 34px;
	stroke-width: 2.05;
}

.asia-brand__name {
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.asia-main-nav {
	display: flex;
	align-items: stretch;
	margin-left: 30px;
	padding-left: 32px;
	border-left: 1px solid var( --asia-line );
}

.asia-main-nav__item {
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 3px;
	font-size: 14px;
	font-weight: 650;
}

.asia-main-nav__item::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var( --asia-accent );
}

.asia-header__controls {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-left: auto;
}

.asia-language {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #c1c9d6;
}

.asia-language button {
	padding: 4px 0;
	background: transparent;
	border: 0;
	color: var( --asia-muted );
	cursor: pointer;
	font-size: 14px;
}

.asia-language button.is-active {
	color: var( --asia-ink );
	font-weight: 650;
}

.asia-user-menu {
	position: relative;
	height: 100%;
	border-left: 1px solid var( --asia-line );
}

.asia-user-menu summary {
	display: flex;
	align-items: center;
	gap: 11px;
	height: 100%;
	padding-left: 20px;
	list-style: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 550;
}

.asia-user-menu summary::-webkit-details-marker {
	display: none;
}

.asia-user-menu__icon {
	display: grid;
	place-items: center;
	width: 29px;
	height: 29px;
	color: var( --asia-muted );
	border: 1px solid var( --asia-line-strong );
	border-radius: 50%;
}

.asia-user-menu__mobile-menu {
	display: none;
}

.asia-user-menu__popover {
	position: absolute;
	top: calc( 100% + 8px );
	right: 0;
	display: grid;
	gap: 10px;
	min-width: 190px;
	padding: 15px;
	background: var( --asia-surface );
	border: 1px solid var( --asia-line );
	border-radius: 8px;
	box-shadow: var( --asia-shadow );
}

.asia-user-menu__popover strong {
	overflow: hidden;
	text-overflow: ellipsis;
}

.asia-user-menu__popover a {
	font-weight: 600;
	text-decoration: none;
}

.asia-user-menu__action {
	padding: 0;
	background: transparent;
	border: 0;
	color: var( --asia-link );
	cursor: pointer;
	font: inherit;
	font-weight: 600;
	text-align: left;
}

.asia-user-menu__action:disabled {
	opacity: 0.6;
	cursor: wait;
}

.asia-user-menu__logout {
	margin: 0;
}

.asia-user-menu__status {
	margin: 0;
	color: var( --asia-muted );
	font-size: 13px;
	font-weight: 600;
}

.asia-link-code {
	display: grid;
	gap: 4px;
	margin: 2px 0;
	color: var( --asia-muted );
	font-size: 12px;
}

.asia-link-code code {
	color: var( --asia-ink );
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.asia-user-menu__error {
	margin: 0;
	color: #b51512;
	font-size: 12px;
}

.asia-workspace {
	display: grid;
	grid-template-columns: minmax( 0, 1fr );
	min-height: calc( 100vh - 62px );
	background: var( --asia-surface );
}

.asia-workspace.has-drawer {
	grid-template-columns: minmax( 0, 1fr ) minmax( 430px, 31.25vw );
}

.asia-catalog {
	min-width: 0;
	padding: 38px 30px 24px;
}

.asia-catalog__intro h1 {
	margin: 0;
	font-size: clamp( 23px, 1.72vw, 27px );
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -0.015em;
}

.asia-catalog__intro p {
	margin: 8px 0 0;
	color: var( --asia-muted );
	font-size: 14px;
}

.asia-dataset-tabs {
	display: flex;
	gap: 17px;
	margin-top: 25px;
}

.asia-dataset-tabs button {
	min-width: 85px;
	height: 39px;
	padding: 0 16px;
	background: var( --asia-surface );
	border: 1px solid var( --asia-line );
	border-radius: var( --asia-radius );
	cursor: pointer;
	font-size: 14px;
}

.asia-dataset-tabs button:hover {
	border-color: var( --asia-line-strong );
}

.asia-dataset-tabs button.is-active {
	border-color: var( --asia-accent );
	color: var( --asia-accent );
	font-weight: 600;
}

.asia-search-form {
	position: relative;
	display: grid;
	grid-template-columns: minmax( 0, 1fr ) 98px;
	gap: 12px;
	margin-top: 14px;
}

.asia-search-input {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 50px;
	padding: 0 14px;
	color: var( --asia-muted );
	background: var( --asia-surface );
	border: 1px solid var( --asia-line-strong );
	border-radius: var( --asia-radius );
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.asia-search-input:focus-within {
	border-color: #8ba8d3;
	box-shadow: 0 0 0 3px rgba( 7, 84, 201, 0.08 );
}

.asia-search-input.has-error {
	border-color: var( --asia-accent );
}

.asia-search-input input {
	width: 100%;
	height: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	color: var( --asia-ink );
	font-size: 14px;
}

.asia-search-input input::placeholder {
	color: #71809d;
	opacity: 1;
}

.asia-search-input input::-webkit-search-cancel-button {
	cursor: pointer;
}

.asia-search-button {
	height: 50px;
	background: var( --asia-accent );
	border: 1px solid var( --asia-accent );
	border-radius: var( --asia-radius );
	box-shadow: 0 5px 14px rgba( 255, 40, 36, 0.18 );
	color: var( --asia-on-accent );
	cursor: pointer;
	font-size: 15px;
	font-weight: 650;
	transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.asia-search-button:hover {
	background: var( --asia-accent-dark );
	border-color: var( --asia-accent-dark );
}

.asia-search-button:active {
	transform: translateY( 1px );
}

.asia-query-error {
	grid-column: 1 / -1;
	margin: -6px 0 0;
	color: #b51512;
	font-size: 12px;
}

.asia-filters {
	display: grid;
	grid-template-columns: minmax( 160px, 1fr ) auto;
	gap: 18px;
	align-items: center;
	margin-top: 20px;
}

.asia-filter-controls {
	display: grid;
	grid-template-columns: 0.9fr 0.92fr 1.2fr;
	gap: 16px;
}

.asia-select {
	position: relative;
	display: block;
	min-width: 0;
}

.asia-select select {
	width: 100%;
	height: 45px;
	padding: 0 42px 0 12px;
	background: var( --asia-surface );
	border: 1px solid var( --asia-line );
	border-radius: var( --asia-radius );
	color: var( --asia-ink );
	cursor: pointer;
	font-size: 13px;
	text-overflow: ellipsis;
	appearance: none;
}

.asia-select > .asia-icon {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY( -50% );
	pointer-events: none;
}

.asia-mobile-filter-toggle {
	display: none;
}

.asia-reset-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	height: 43px;
	padding: 0 2px;
	background: transparent;
	border: 0;
	color: var( --asia-muted );
	cursor: pointer;
	font-size: 13px;
}

.asia-reset-button:hover {
	color: var( --asia-ink );
}

.asia-results-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var( --asia-line );
}

.asia-results-toolbar > strong {
	font-size: 14px;
	font-weight: 650;
}

.asia-results-toolbar .asia-select {
	width: 213px;
}

.asia-results-toolbar .asia-select select {
	height: 36px;
}

.asia-table {
	margin-top: 14px;
}

.asia-table-head,
.asia-company-row,
.asia-skeleton-row {
	display: grid;
	grid-template-columns: 25.5% 13.8% 19.8% 13.5% 15.8% 11.6%;
}

.asia-table-head {
	align-items: end;
	min-height: 39px;
	padding: 0 13px 12px;
	color: #647391;
	font-size: 10px;
	font-weight: 650;
}

.asia-table-head span {
	padding-right: 12px;
}

.asia-company-list,
.asia-loading-rows {
	border: 1px solid var( --asia-line );
}

.asia-company-row {
	position: relative;
	align-items: stretch;
	width: 100%;
	min-height: 92px;
	padding: 0 13px;
	background: var( --asia-surface );
	border: 0;
	border-bottom: 1px solid var( --asia-line );
	border-radius: 0;
	text-align: left;
	cursor: pointer;
	transition: background-color 140ms ease;
	content-visibility: auto;
	contain-intrinsic-size: auto 92px;
}

.asia-company-row:last-child {
	border-bottom: 0;
}

.asia-company-row:hover {
	background: var( --asia-surface-hover );
}

.asia-company-row.is-selected {
	background: var( --asia-surface-selected );
}

.asia-company-row.is-selected::before {
	content: "";
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: -1px;
	width: 2px;
	background: var( --asia-accent );
}

.asia-company-cell {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 13px 12px 13px 0;
	color: var( --asia-ink );
	font-size: 12.5px;
	line-height: 1.48;
}

.asia-company-cell > strong,
.asia-company-cell > span {
	overflow-wrap: anywhere;
}

.asia-company-cell strong {
	font-weight: 600;
}

.asia-company-cell small {
	display: block;
	margin-top: 4px;
	color: #304363;
	font-size: 11px;
	line-height: 1.4;
}

.asia-company-cell--name {
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 13px;
}

.asia-company-cell__icon {
	flex: 0 0 auto;
	color: var( --asia-accent );
}

.asia-company-cell__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.asia-company-cell--contacts {
	padding-right: 0;
}

.asia-messenger-list {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 7px;
}

.asia-messenger {
	display: inline-grid;
	place-items: center;
	width: 20px;
	height: 20px;
	color: #fff;
	border-radius: 50%;
}

.asia-messenger svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.asia-messenger--wechat {
	color: var( --asia-green );
}

.asia-messenger--telegram {
	color: var( --asia-blue );
}

.asia-messenger--whatsapp {
	color: var( --asia-green );
}

.asia-messenger--message {
	color: var( --asia-muted );
}

.asia-skeleton-row {
	align-items: center;
	min-height: 92px;
	padding: 0 13px;
	border-bottom: 1px solid var( --asia-line );
}

.asia-skeleton-row:last-child {
	border-bottom: 0;
}

.asia-skeleton-line {
	display: block;
	width: var( --skeleton-width, 70% );
	height: 11px;
	background: linear-gradient( 90deg, #edf1f6 20%, #f7f9fc 50%, #edf1f6 80% );
	background-size: 200% 100%;
	border-radius: 4px;
	animation: asia-skeleton 1.35s linear infinite;
}

@keyframes asia-skeleton {
	to {
		background-position: -200% 0;
	}
}

.asia-status {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 310px;
	padding: 42px;
	border: 1px solid var( --asia-line );
	text-align: center;
}

.asia-status__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 18px;
	color: var( --asia-muted );
	background: var( --asia-surface-soft );
	border-radius: 50%;
}

.asia-status--error .asia-status__icon {
	color: #a61d1b;
	background: #fff1f0;
}

.asia-status strong {
	font-size: 17px;
}

.asia-status p {
	max-width: 370px;
	margin: 7px 0 18px;
	color: var( --asia-muted );
}

.asia-secondary-button,
.asia-primary-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 17px;
	background: var( --asia-surface );
	border: 1px solid var( --asia-line-strong );
	border-radius: var( --asia-radius );
	color: var( --asia-ink );
	cursor: pointer;
	font-weight: 600;
	text-decoration: none;
}

.asia-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 73px;
	padding: 18px 13px 0;
}

.asia-pagination__range {
	color: var( --asia-muted );
	font-size: 12px;
}

.asia-pagination__buttons {
	display: flex;
	align-items: center;
	gap: 10px;
}

.asia-page-button {
	display: grid;
	place-items: center;
	width: 40px;
	height: 38px;
	padding: 0;
	background: var( --asia-surface );
	border: 1px solid var( --asia-line );
	border-radius: var( --asia-radius );
	cursor: pointer;
	font-size: 13px;
}

.asia-page-button:hover:not( :disabled ) {
	border-color: #aab9ce;
}

.asia-page-button.is-active {
	border-color: var( --asia-accent );
}

.asia-page-button:disabled {
	opacity: 0.4;
	cursor: default;
}

.asia-page-gap {
	display: grid;
	place-items: center;
	width: 30px;
	font-size: 18px;
}

.asia-drawer-backdrop {
	display: none;
}

.asia-detail-drawer {
	position: sticky;
	top: 0;
	z-index: 20;
	align-self: start;
	height: calc( 100vh - 62px );
	overflow-y: auto;
	overscroll-behavior: contain;
	background: var( --asia-surface );
	border-left: 1px solid var( --asia-line );
	box-shadow: -6px 0 22px rgba( 7, 23, 57, 0.035 );
}

.asia-detail-header {
	position: sticky;
	top: 0;
	z-index: 3;
	display: grid;
	grid-template-columns: 48px minmax( 0, 1fr ) 30px;
	gap: 16px;
	align-items: start;
	min-height: 130px;
	padding: 31px 23px 21px 29px;
	background: rgba( 255, 255, 255, 0.98 );
	border-bottom: 1px solid var( --asia-line );
}

.asia-detail-header__mark {
	color: var( --asia-accent );
}

.asia-detail-header__title {
	min-width: 0;
}

.asia-detail-header__title h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 750;
	line-height: 1.17;
	letter-spacing: -0.01em;
	overflow-wrap: anywhere;
}

.asia-detail-header__title p {
	margin: 3px 0 0;
	font-size: 17px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.asia-detail-header__title small {
	display: block;
	margin-top: 6px;
	color: var( --asia-muted );
	font-size: 12px;
}

.asia-detail-close {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.asia-detail-close:hover {
	background: var( --asia-surface-soft );
}

.asia-detail-body {
	min-height: calc( 100% - 130px );
}

.asia-detail-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 240px;
	color: var( --asia-muted );
}

.asia-spinner {
	display: inline-block;
	width: 22px;
	height: 22px;
	border: 2px solid #d8e0eb;
	border-top-color: var( --asia-accent );
	border-radius: 50%;
	animation: asia-spin 0.75s linear infinite;
}

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

.asia-detail-section {
	position: relative;
	padding: 21px 28px 19px 62px;
	border-bottom: 1px solid var( --asia-line );
}

.asia-detail-section h3 {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0 0 15px;
	font-size: 14px;
	font-weight: 700;
}

.asia-detail-section h3 > .asia-icon {
	position: absolute;
	left: 28px;
	color: var( --asia-muted );
}

.asia-detail-section dl {
	display: grid;
	gap: 15px;
	margin: 0;
}

.asia-detail-field {
	display: grid;
	gap: 2px;
}

.asia-detail-field dt {
	color: var( --asia-muted );
	font-size: 11px;
}

.asia-detail-field dd {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.asia-detail-field dd .asia-messenger-list {
	margin: 0 0 0 12px;
	vertical-align: middle;
}

.asia-brand-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.asia-brand-tags > span {
	display: inline-flex;
	align-items: center;
	min-height: 37px;
	padding: 5px 13px;
	background: var( --asia-surface );
	border: 1px solid var( --asia-line-strong );
	border-radius: var( --asia-radius );
	font-size: 12px;
	font-weight: 650;
}

.asia-bank-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 34px;
	padding: 6px 12px;
	background: var( --asia-surface );
	border: 1px solid #b8c8de;
	border-radius: var( --asia-radius );
	color: var( --asia-link );
	cursor: pointer;
	font-size: 12.5px;
	font-weight: 600;
}

.asia-bank-button:disabled {
	opacity: 0.55;
	cursor: wait;
}

.asia-bank-audit {
	display: block;
	margin-top: 8px;
	color: var( --asia-muted );
	font-size: 10.5px;
}

.asia-bank-error {
	margin: 10px 0 0;
	color: #b51512;
	font-size: 12px;
}

.asia-bank-revealed h4 {
	margin: 0 0 6px;
	font-size: 12px;
}

.asia-bank-revealed h4:not( :first-child ) {
	margin-top: 14px;
}

.asia-bank-revealed pre {
	margin: 0 0 12px;
	padding: 10px;
	overflow-x: auto;
	white-space: pre-wrap;
	word-break: break-word;
	background: var( --asia-surface-soft );
	border: 1px solid var( --asia-line );
	border-radius: var( --asia-radius );
	color: var( --asia-ink );
	font: 12px/1.5 var( --asia-font );
}

.asia-boot-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 55vh;
	color: var( --asia-muted );
}

.asia-noscript,
.asia-error-page {
	max-width: 680px;
	margin: 10vh auto;
	padding: 32px;
	text-align: center;
}

.asia-error-page__icon {
	color: var( --asia-accent );
	font-size: 64px;
	font-weight: 800;
}

.asia-error-page h1 {
	margin: 12px 0 8px;
}

.asia-error-page p {
	margin: 0 0 24px;
	color: var( --asia-muted );
}

.asia-account-shell {
	min-height: 100vh;
	min-height: 100dvh;
	background: #f5f7fb;
}

.asia-account-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 62px;
	padding: 0 29px;
	background: var( --asia-surface );
	border-bottom: 1px solid var( --asia-line );
}

.asia-account-language {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #c1c9d6;
}

.asia-account-language button {
	padding: 5px 0;
	background: transparent;
	border: 0;
	color: var( --asia-muted );
	cursor: pointer;
	font: inherit;
}

.asia-account-language button.is-active {
	color: var( --asia-ink );
	font-weight: 700;
}

.asia-account-card {
	width: min( calc( 100% - 32px ), 460px );
	margin: clamp( 48px, 9vh, 96px ) auto 40px;
	padding: 34px;
	background: var( --asia-surface );
	border: 1px solid var( --asia-line );
	border-radius: 10px;
	box-shadow: var( --asia-shadow );
}

.asia-account-card h1 {
	margin: 0;
	font-size: 27px;
	line-height: 1.2;
	letter-spacing: -0.015em;
}

.asia-account-card__lead {
	margin: 9px 0 25px;
	color: var( --asia-muted );
	line-height: 1.55;
}

.asia-account-form {
	display: grid;
	gap: 17px;
}

.asia-account-form > label:not( .asia-account-check ) {
	display: grid;
	gap: 7px;
	font-weight: 650;
}

.asia-account-form input[type="email"],
.asia-account-form input[type="text"],
.asia-account-form input[type="password"] {
	width: 100%;
	height: 48px;
	padding: 0 13px;
	background: var( --asia-surface );
	border: 1px solid var( --asia-line-strong );
	border-radius: var( --asia-radius );
	color: var( --asia-ink );
	font: inherit;
}

.asia-account-form input:focus {
	border-color: #8ba8d3;
	box-shadow: 0 0 0 3px rgba( 7, 84, 201, 0.08 );
	outline: 0;
}

.asia-account-form__hint {
	margin-top: -10px;
	color: var( --asia-muted );
	font-size: 12px;
	line-height: 1.45;
}

.asia-account-check {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var( --asia-muted );
	cursor: pointer;
}

.asia-account-check input {
	width: 17px;
	height: 17px;
	margin: 0;
	accent-color: var( --asia-accent );
}

.asia-account-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 18px;
	background: var( --asia-accent );
	border: 1px solid var( --asia-accent );
	border-radius: var( --asia-radius );
	color: var( --asia-on-accent );
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.asia-account-submit:disabled {
	opacity: 0.6;
	cursor: wait;
}

.asia-account-alert {
	margin: 0 0 18px;
	padding: 12px 14px;
	border: 1px solid var( --asia-line );
	border-radius: var( --asia-radius );
	line-height: 1.45;
}

.asia-account-alert--error {
	background: #fff1f0;
	border-color: #efc2bf;
	color: #8e1917;
}

.asia-account-alert--success {
	background: #edf9f0;
	border-color: #b8dfc1;
	color: #1f6330;
}

.asia-account-switch {
	margin: 21px 0 0;
	color: var( --asia-muted );
	text-align: center;
}

.asia-account-switch + .asia-account-switch {
	margin-top: 10px;
}

.asia-account-switch a {
	font-weight: 650;
}

.asia-mini-gate {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: var( --asia-tg-viewport-stable-height, 100dvh );
	padding:
		max( 28px, var( --asia-tg-content-safe-top, 0px ) )
		max( 22px, var( --asia-tg-content-safe-right, 0px ) )
		max( 28px, var( --asia-tg-content-safe-bottom, 0px ) )
		max( 22px, var( --asia-tg-content-safe-left, 0px ) );
	background: var( --asia-bg );
	text-align: center;
}

.asia-mini-gate__mark {
	display: grid;
	place-items: center;
	width: 68px;
	height: 76px;
	margin-bottom: 20px;
	color: var( --asia-accent );
}

.asia-mini-gate h1 {
	max-width: 430px;
	margin: 0;
	font-size: clamp( 23px, 6vw, 30px );
	line-height: 1.22;
}

.asia-mini-gate p {
	max-width: 430px;
	margin: 10px 0 22px;
	color: var( --asia-muted );
}

.asia-mini-gate .asia-spinner {
	margin-top: 24px;
}

body.asia-telegram-shell {
	min-height: var( --asia-tg-viewport-height, 100dvh );
	background: var( --asia-bg );
	overscroll-behavior-y: none;
}

body.asia-telegram-shell .asia-header {
	height: calc( 62px + var( --asia-tg-content-safe-top, 0px ) );
	padding:
		var( --asia-tg-content-safe-top, 0px )
		max( 18px, var( --asia-tg-content-safe-right, 0px ) )
		0
		max( 18px, var( --asia-tg-content-safe-left, 0px ) );
	background: var( --asia-surface );
}

body.asia-telegram-shell .asia-workspace {
	min-height: calc(
		var( --asia-tg-viewport-stable-height, 100dvh ) -
			62px -
			var( --asia-tg-content-safe-top, 0px )
	);
	padding-bottom: max(
		var( --asia-tg-content-safe-bottom, 0px ),
		env( safe-area-inset-bottom, 0px )
	);
	background: var( --asia-bg );
}

body.asia-telegram-shell :where(
	.asia-dataset-tabs button,
	.asia-search-input,
	.asia-select select,
	.asia-company-row,
	.asia-secondary-button,
	.asia-page-button,
	.asia-detail-drawer,
	.asia-brand-tags > span,
	.asia-bank-button,
	.asia-user-menu__popover
) {
	background: var( --asia-surface );
}

body.asia-telegram-shell .asia-detail-header {
	background: color-mix( in srgb, var( --asia-surface ) 96%, transparent );
}

body.asia-telegram-shell .asia-company-row:hover {
	background: var( --asia-surface-selected );
}

body.asia-telegram-shell .asia-company-cell small {
	color: var( --asia-muted );
}

body.asia-telegram-shell .asia-mobile-filter-toggle {
	background: var( --asia-surface );
}

html[data-telegram-color-scheme="dark"] {
	color-scheme: dark;
}

html[data-telegram-color-scheme="dark"] body.asia-telegram-shell .asia-account-alert--error,
html[data-telegram-color-scheme="dark"] body.asia-telegram-shell .asia-status--error .asia-status__icon {
	background: #3c1f22;
	border-color: #674044;
	color: #ffb4ae;
}

@media ( max-width: 1279px ) and ( min-width: 1100px ) {
	.asia-workspace.has-drawer {
		grid-template-columns: minmax( 0, 1fr ) 430px;
	}

	.asia-catalog {
		padding-right: 20px;
		padding-left: 20px;
	}

	.asia-company-cell {
		font-size: 11.5px;
	}
}

@media ( max-width: 1099px ) {
	body.asia-drawer-open {
		overflow: hidden;
	}

	.asia-workspace,
	.asia-workspace.has-drawer {
		display: block;
	}

	.asia-drawer-backdrop {
		position: fixed;
		inset: 0;
		z-index: 98;
		display: block;
		padding: 0;
		background: rgba( 7, 23, 57, 0.2 );
		border: 0;
	}

	.asia-detail-drawer {
		position: fixed;
		inset: 56px 0 0;
		z-index: 99;
		height: auto;
		border: 0;
		border-radius: 22px 22px 0 0;
		box-shadow: 0 -12px 40px rgba( 7, 23, 57, 0.14 );
		animation: asia-drawer-in 220ms ease-out;
	}

	.asia-detail-drawer::before {
		content: "";
		position: absolute;
		top: 10px;
		left: 50%;
		z-index: 5;
		width: 52px;
		height: 5px;
		background: #cbd4e0;
		border-radius: 999px;
		transform: translateX( -50% );
	}

	@keyframes asia-drawer-in {
		from {
			transform: translateY( 36px );
			opacity: 0;
		}
		to {
			transform: translateY( 0 );
			opacity: 1;
		}
	}

	.asia-detail-header {
		position: relative;
		grid-template-columns: minmax( 0, 1fr ) 40px;
		min-height: 0;
		padding: 47px 28px 22px;
	}

	.asia-detail-header__mark {
		display: none;
	}

	.asia-detail-close {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.asia-detail-header__title {
		grid-column: 1;
		grid-row: 1;
	}

	.asia-detail-section {
		padding-right: 28px;
		padding-left: 64px;
	}
}

@media ( max-width: 767px ) {
	body.asia-directory-shell {
		font-size: 15px;
	}

	.asia-account-header {
		height: 70px;
		padding: 0 18px;
	}

	.asia-account-card {
		margin-top: 32px;
		padding: 27px 23px;
	}

	.asia-account-card h1 {
		font-size: 24px;
	}

	.admin-bar .asia-detail-drawer {
		top: 46px;
	}

	.asia-header {
		height: 70px;
		padding: 0 18px;
	}

	.asia-brand {
		gap: 15px;
	}

	.asia-brand__mark,
	.asia-brand__mark .asia-icon {
		width: 27px;
		height: 31px;
	}

	.asia-brand__name {
		font-size: 20px;
	}

	.asia-main-nav {
		display: none;
	}

	.asia-header__controls {
		gap: 16px;
	}

	.asia-language {
		gap: 8px;
	}

	.asia-language button {
		font-size: 15px;
	}

	.asia-user-menu {
		border-left: 0;
	}

	.asia-user-menu summary {
		gap: 14px;
		padding-left: 0;
	}

	.asia-user-menu__label,
	.asia-user-menu__chevron {
		display: none;
	}

	.asia-user-menu__mobile-menu {
		display: block;
	}

	.asia-user-menu__icon {
		width: 35px;
		height: 35px;
	}

	.asia-user-menu__popover {
		top: calc( 100% + 1px );
		right: 0;
	}

	.asia-catalog {
		padding: 23px 16px 20px;
	}

	.asia-catalog__intro h1 {
		font-size: clamp( 22px, 5.7vw, 27px );
		line-height: 1.23;
	}

	.asia-catalog__intro p {
		margin-top: 7px;
		font-size: 14px;
		line-height: 1.45;
	}

	.asia-dataset-tabs {
		gap: 12px;
		margin-top: 20px;
	}

	.asia-dataset-tabs button {
		min-width: 0;
		height: 48px;
		padding: 0 18px;
		font-size: 15px;
	}

	.asia-search-form {
		grid-template-columns: minmax( 0, 1fr ) 98px;
		gap: 10px;
		margin-top: 18px;
	}

	.asia-search-input,
	.asia-search-button {
		height: 54px;
	}

	.asia-search-input {
		padding: 0 14px;
	}

	.asia-search-input input,
	.asia-search-button {
		font-size: 15px;
	}

	.asia-filters {
		grid-template-columns: minmax( 0, 1fr ) auto;
		gap: 14px;
		margin-top: 16px;
	}

	.asia-mobile-filter-toggle {
		display: flex;
		align-items: center;
		gap: 14px;
		height: 52px;
		padding: 0 16px;
		background: var( --asia-surface );
		border: 1px solid var( --asia-line-strong );
		border-radius: var( --asia-radius );
		cursor: pointer;
		font-size: 15px;
		font-weight: 600;
		text-align: left;
	}

	.asia-mobile-filter-toggle strong {
		display: grid;
		place-items: center;
		width: 24px;
		height: 24px;
		margin-left: auto;
		background: var( --asia-accent );
		border-radius: 50%;
		color: #fff;
		font-size: 12px;
	}

	.asia-filter-controls {
		display: none;
		grid-column: 1 / -1;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.asia-filters.is-open .asia-filter-controls {
		display: grid;
	}

	.asia-filters.is-open .asia-reset-button {
		align-self: start;
	}

	.asia-filter-controls .asia-select select {
		height: 50px;
		font-size: 14px;
	}

	.asia-reset-button {
		height: 52px;
		padding: 0 4px;
		font-size: 14px;
	}

	.asia-results-toolbar {
		align-items: center;
		margin-top: 17px;
		padding-top: 0;
		border-top: 0;
	}

	.asia-results-toolbar > strong {
		font-size: 15px;
	}

	.asia-results-toolbar .asia-select {
		width: 200px;
	}

	.asia-results-toolbar .asia-select select {
		height: 47px;
		font-size: 14px;
	}

	.asia-table {
		margin-top: 14px;
	}

	.asia-table-head {
		display: none;
	}

	.asia-company-list,
	.asia-loading-rows {
		border-color: var( --asia-line-strong );
		border-radius: 3px;
		overflow: hidden;
	}

	.asia-company-row {
		display: grid;
		grid-template-columns: minmax( 0, 1fr ) minmax( 125px, auto ) 21px;
		grid-template-rows: auto auto;
		gap: 4px 12px;
		min-height: 126px;
		padding: 22px 31px 18px 26px;
		content-visibility: auto;
		contain-intrinsic-size: auto 126px;
	}

	.asia-company-row::after {
		content: "";
		grid-column: 3;
		grid-row: 1 / 3;
		align-self: center;
		justify-self: center;
		width: 9px;
		height: 9px;
		border-top: 2px solid var( --asia-ink );
		border-right: 2px solid var( --asia-ink );
		transform: rotate( 45deg );
	}

	.asia-company-row.is-selected::before {
		width: 3px;
	}

	.asia-company-cell {
		padding: 0;
		font-size: 14px;
	}

	.asia-company-cell--name {
		grid-column: 1;
		grid-row: 1;
		flex-direction: row;
		align-items: flex-start;
		gap: 14px;
	}

	.asia-company-cell--name strong {
		font-size: 15px;
		line-height: 1.35;
	}

	.asia-company-cell small {
		margin-top: 3px;
		font-size: 13px;
	}

	.asia-company-cell:nth-child( 2 ) {
		grid-column: 1;
		grid-row: 2;
		padding-left: 36px;
	}

	.asia-company-cell:nth-child( 2 ) strong {
		display: none;
	}

	.asia-company-cell:nth-child( 2 ) small {
		color: var( --asia-muted );
		font-size: 13px;
	}

	.asia-company-cell:nth-child( 3 ),
	.asia-company-cell:nth-child( 4 ),
	.asia-company-cell:nth-child( 5 ) {
		display: none;
	}

	.asia-company-cell--contacts {
		grid-column: 2;
		grid-row: 1 / 3;
		align-items: flex-end;
		justify-content: center;
		font-size: 14px;
		text-align: right;
	}

	.asia-company-cell__icon {
		margin-top: 1px;
	}

	.asia-messenger {
		width: 25px;
		height: 25px;
	}

	.asia-skeleton-row {
		grid-template-columns: 1.3fr 0.7fr;
		min-height: 126px;
	}

	.asia-skeleton-row span:nth-child( n + 3 ) {
		display: none;
	}

	.asia-status {
		min-height: 300px;
		padding: 30px 18px;
	}

	.asia-pagination {
		flex-direction: column;
		align-items: stretch;
		gap: 13px;
		padding: 18px 0 0;
	}

	.asia-pagination__range {
		order: 2;
		text-align: center;
	}

	.asia-pagination__buttons {
		justify-content: center;
		gap: 6px;
	}

	.asia-page-button {
		width: 37px;
		height: 37px;
	}

	.asia-page-gap {
		width: 22px;
	}

	.asia-detail-drawer {
		inset: 0;
		width: 100vw;
		height: 100vh;
		height: 100dvh;
		max-height: none;
		border-radius: 0;
	}

	body.asia-telegram-shell .asia-detail-drawer {
		height: var( --asia-tg-viewport-height, 100dvh );
		padding-bottom: max(
			var( --asia-tg-content-safe-bottom, 0px ),
			env( safe-area-inset-bottom, 0px )
		);
	}

	.asia-detail-header {
		padding: 50px 23px 22px;
	}

	body.asia-telegram-shell .asia-detail-header {
		padding-top: max(
			50px,
			calc( 24px + var( --asia-tg-content-safe-top, 0px ) )
		);
	}

	.asia-detail-header__title h2 {
		font-size: 22px;
	}

	.asia-detail-header__title p {
		font-size: 18px;
	}

	.asia-detail-header__title small {
		font-size: 14px;
	}

	.asia-detail-section {
		padding: 21px 22px 20px 61px;
	}

	.asia-detail-section h3 {
		font-size: 16px;
	}

	.asia-detail-section h3 > .asia-icon {
		left: 24px;
	}

	.asia-detail-field dt {
		font-size: 13px;
	}

	.asia-detail-field dd {
		font-size: 14px;
	}

	.asia-brand-tags > span {
		min-height: 42px;
		font-size: 14px;
	}

	.asia-bank-button {
		min-height: 38px;
		font-size: 14px;
	}

	.asia-bank-audit {
		font-size: 12px;
	}
}

@media ( max-width: 560px ) {
	.asia-account-header {
		padding: 0 13px;
	}

	.asia-account-card {
		width: min( calc( 100% - 24px ), 460px );
		padding: 24px 19px;
	}

	.asia-header {
		padding: 0 13px;
	}

	.asia-brand {
		gap: 10px;
	}

	.asia-brand__name {
		font-size: 17px;
	}

	.asia-header__controls {
		gap: 11px;
	}

	.asia-language button {
		font-size: 14px;
	}

	.asia-user-menu summary {
		gap: 8px;
	}

	.asia-user-menu__icon {
		width: 31px;
		height: 31px;
	}

	.asia-user-menu__mobile-menu {
		width: 24px;
	}

	.asia-catalog {
		padding-right: 12px;
		padding-left: 12px;
	}

	.asia-dataset-tabs {
		justify-content: space-between;
		gap: 8px;
	}

	.asia-dataset-tabs button {
		flex: 1 1 0;
		padding: 0 8px;
	}

	.asia-search-form {
		grid-template-columns: minmax( 0, 1fr ) 84px;
		gap: 8px;
	}

	.asia-search-input {
		gap: 8px;
		padding: 0 10px;
	}

	.asia-search-input input,
	.asia-search-button {
		font-size: 14px;
	}

	.asia-filters {
		gap: 9px;
	}

	.asia-reset-button {
		font-size: 13px;
	}

	.asia-results-toolbar {
		align-items: flex-start;
		gap: 12px;
	}

	.asia-results-toolbar > strong {
		padding-top: 12px;
		font-size: 13px;
	}

	.asia-results-toolbar .asia-select {
		width: min( 54vw, 200px );
	}

	.asia-company-row {
		grid-template-columns: minmax( 0, 1fr ) 110px 17px;
		gap: 4px 7px;
		padding-right: 18px;
		padding-left: 15px;
	}

	.asia-company-cell--name {
		gap: 9px;
	}

	.asia-company-cell:nth-child( 2 ) {
		padding-left: 31px;
	}

	.asia-company-cell--contacts,
	.asia-company-cell--name strong {
		font-size: 13px;
	}

	.asia-company-cell small,
	.asia-company-cell:nth-child( 2 ) small {
		font-size: 12px;
	}

	.asia-pagination__buttons {
		gap: 4px;
	}

	.asia-page-button {
		width: 34px;
		height: 35px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	body.asia-directory-shell {
		display: none !important;
	}
}
