/* ANY Tank — Frontend */

.atank {
	--atank-accent: #e10600;
	--atank-accent-ink: #fff;
	--atank-text: #111827;
	--atank-muted: #6b7280;
	--atank-line: #e5e7eb;
	--atank-bg: #fff;
	--atank-field: #fff;
	--atank-soft: color-mix(in srgb, var(--atank-bg) 92%, #0f172a);
	--atank-success: #047857;
	--atank-success-bg: #ecfdf5;
	--atank-radius: 16px;
	--atank-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
	color: var(--atank-text);
	font-family: inherit;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

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

.atank-shell {
	background: var(--atank-bg);
	border: 1px solid var(--atank-line);
	border-radius: 24px;
	padding: 28px 28px 20px;
	box-shadow: var(--atank-shadow);
}
.atank-shell--compact { padding: 20px 20px 14px; }

.atank-hero { margin-bottom: 22px; }
.atank-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.atank-brand__mark,
.atank-brand__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--atank-accent);
	color: #fff;
	font-weight: 800;
	font-size: 18px;
}
.atank-brand__logo {
	object-fit: contain;
	background: #fff;
	padding: 3px;
	box-shadow: inset 0 0 0 1px var(--atank-line);
}
.atank-brand__name { font-weight: 800; font-size: 22px; letter-spacing: -0.03em; }
.atank-hero__title {
	margin: 0;
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.atank-search { display: grid; gap: 12px; }
.atank-search__location {
	position: relative;
	display: block;
	z-index: 3;
}
.atank-suggest {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	z-index: 20;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: var(--atank-field);
	border: 1px solid var(--atank-line);
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
	max-height: 280px;
	overflow: auto;
}
.atank-suggest__item {
	padding: 10px 16px;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.35;
}
.atank-suggest__item:hover,
.atank-suggest__item.is-active {
	background: color-mix(in srgb, var(--atank-accent) 10%, #fff);
}
.atank-search__pin {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	display: flex;
}
.atank-input,
.atank-select,
.atank-calc input {
	width: 100%;
	border: 1px solid #d1d5db;
	border-radius: 12px;
	background: var(--atank-field);
	color: var(--atank-text);
	font-size: 16px;
	padding: 14px 16px;
	appearance: none;
}
.atank-input--location { padding-left: 44px; padding-right: 42px; }
.atank-input:focus,
.atank-select:focus,
.atank-calc input:focus {
	outline: none;
	border-color: var(--atank-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--atank-accent) 18%, transparent);
}
.atank-clear {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	color: #9ca3af;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
}
.atank-search__row {
	display: grid;
	grid-template-columns: 1fr 1fr 160px;
	gap: 12px;
}
.atank-select-wrap span {
	display: block;
	font-size: 12px;
	color: var(--atank-muted);
	margin-bottom: 6px;
}
.atank-select {
	background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 36px;
}
.atank-btn {
	border: 0;
	border-radius: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}
.atank-btn--primary {
	background: var(--atank-accent);
	color: var(--atank-accent-ink);
	padding: 14px 18px;
	align-self: end;
	min-height: 52px;
}
.atank-btn:hover { filter: brightness(0.95); }
.atank-btn:disabled { opacity: .65; cursor: wait; }
.atank-search__tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
	font-size: 14px;
}
.atank-linkbtn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	background: none;
	color: var(--atank-accent);
	font-weight: 700;
	cursor: pointer;
	padding: 0;
}
.atank-linkbtn:disabled {
	opacity: .55;
	cursor: wait;
}
.atank-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--atank-muted);
}
.atank-check select {
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	padding: 0;
}

.atank-consent {
	margin-top: 16px;
	padding: 16px 18px;
	border-radius: 14px;
	border: 1px solid var(--atank-line);
	background: var(--atank-soft);
}
.atank-consent__title {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 800;
}
.atank-consent__text {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.45;
	color: var(--atank-muted);
}
.atank-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.atank-btn--ghost {
	background: #fff;
	color: var(--atank-text);
	border: 1px solid var(--atank-line);
	padding: 12px 16px;
	min-height: 46px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 700;
}
.atank-consent .atank-btn--primary {
	min-height: 46px;
	padding: 12px 16px;
	text-transform: none;
	letter-spacing: 0;
	align-self: auto;
}

.atank-status {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #f8fafc;
	color: var(--atank-muted);
	font-size: 14px;
}
.atank-status.is-error { background: #fef2f2; color: #b91c1c; }
.atank-status.is-info { background: #eff6ff; color: #1d4ed8; }

.atank-summary {
	margin-top: 18px;
	padding: 14px 16px;
	border-radius: 14px;
	background: var(--atank-success-bg);
	color: var(--atank-success);
	font-size: 14px;
	font-weight: 600;
}

.atank-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 18px;
}
.atank-card {
	border: 1px solid var(--atank-line);
	border-radius: 16px;
	padding: 18px 16px 16px;
	background: #fff;
	min-height: 168px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.atank-card--cheap {
	background: linear-gradient(180deg, #f0fdf4 0%, #fff 42%);
	border-color: #bbf7d0;
}
.atank-card__badge {
	display: inline-flex;
	align-self: flex-start;
	background: var(--atank-success-bg);
	color: var(--atank-success);
	border-radius: 8px;
	padding: 4px 8px;
	font-size: 12px;
	font-weight: 800;
}
.atank-card__price {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.atank-card__price span { font-size: .9rem; font-weight: 600; color: var(--atank-muted); }
.atank-card__meta,
.atank-card__addr {
	margin: 0;
	color: var(--atank-muted);
	font-size: 14px;
	line-height: 1.4;
}
.atank-card__meta { display: flex; align-items: center; gap: 6px; }
.atank-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
}
.atank-card__actions button,
.atank-card__actions a {
	border: 1px solid var(--atank-line);
	background: #fff;
	border-radius: 999px;
	padding: 7px 10px;
	font-size: 12px;
	font-weight: 700;
	color: var(--atank-text);
	text-decoration: none;
	cursor: pointer;
}
.atank-card__actions .atank-nav {
	background: var(--atank-accent);
	border-color: var(--atank-accent);
	color: #fff;
}
.atank-card.is-closed { opacity: .72; }
.atank-pill {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 700;
	background: #f3f4f6;
	color: #4b5563;
}
.atank-pill--open { background: #ecfdf5; color: #047857; }
.atank-pill--closed { background: #fef2f2; color: #b91c1c; }

.atank-more {
	width: 100%;
	margin-top: 16px;
	border: 1px solid #111827;
	background: #fff;
	border-radius: 999px;
	padding: 14px 18px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
}
.atank-more:hover { background: #111827; color: #fff; }

.atank-map-wrap {
	margin-top: 20px;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--atank-line);
}
.atank-map { width: 100%; height: 420px; background: #eef2f7; }
.atank-pin-wrap,
.leaflet-div-icon.atank-pin-wrap {
	background: transparent !important;
	border: 0 !important;
}
.atank-pin-overlay {
	position: absolute;
	transform: translate(-50%, calc(-100% - 2px));
	z-index: 1;
}
.atank-pin-overlay.is-cheap { z-index: 3; }
.atank-pin {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #111827;
	color: #fff;
	border-radius: 999px;
	padding: 6px 11px 7px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
	cursor: pointer;
}
.atank-pin::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -4px;
	width: 8px;
	height: 8px;
	background: inherit;
	transform: translateX(-50%) rotate(45deg);
	border-radius: 1px;
}
.atank-pin--cheap {
	background: var(--atank-accent);
	font-size: 13px;
	padding: 7px 12px 8px;
}

.atank-detail {
	margin-top: 16px;
	border: 1px solid var(--atank-line);
	border-radius: 16px;
	padding: 18px;
	background: var(--atank-soft);
	scroll-margin-top: 110px;
}
.atank-detail h3 { margin: 0 0 8px; }
.atank-detail p { margin: 0 0 8px; color: var(--atank-muted); }
.atank-sign {
	background: var(--atank-accent);
	color: #fff;
	border-radius: 20px;
	padding: 8px;
	margin: 0 0 16px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}
.atank-sign__cap {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px 8px;
}
.atank-sign__logo {
	width: 54px;
	height: 54px;
	object-fit: contain;
	background: #fff;
	border-radius: 12px;
	padding: 5px;
	flex: 0 0 54px;
}
.atank-sign__mark {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	background: rgba(255,255,255,.16);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 22px;
	flex: 0 0 54px;
}
.atank-sign__titles {
	min-width: 0;
	line-height: 1.15;
}
.atank-sign__titles strong {
	display: block;
	font-size: clamp(1.05rem, 2.4vw, 1.35rem);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.atank-sign__titles span {
	display: block;
	margin-top: 3px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	opacity: 0.82;
}
.atank-sign__station {
	margin: 0 12px 10px !important;
	color: #fff !important;
	font-size: 13px;
	opacity: 0.92;
}
.atank-sign__board {
	list-style: none;
	margin: 0;
	padding: 8px 10px;
	background: #111;
	border-radius: 14px;
}
.atank-sign__board li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	padding: 9px 4px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.atank-sign__board li:last-child { border-bottom: 0; }
.atank-sign__fuel {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #9ca3af;
	font-weight: 700;
}
.atank-sign__digits {
	font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
	font-variant-numeric: tabular-nums;
	font-weight: 800;
	font-size: 1.85rem;
	letter-spacing: 0.02em;
	color: #ffe566;
	line-height: 1;
}
.atank-sign__digits sup {
	font-size: 0.55em;
	position: relative;
	top: -0.42em;
	margin-left: 1px;
}
.atank-sign__na { color: #6b7280; font-size: 1.2rem; }
.atank-detour {
	margin: 4px 0 14px;
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.45;
}
.atank-detour strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.atank-detour p,
.atank-detour__text {
	display: block;
	margin: 0 !important;
	color: inherit;
	white-space: normal;
	word-spacing: normal;
}
.atank-detour__steps {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
}
.atank-detour__steps li {
	padding: 8px 0;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.atank-detour__steps li span {
	display: block;
	margin-bottom: 2px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.72;
}
.atank-detour__steps li div {
	font-weight: 500;
}
.atank-detour__steps b { font-weight: 800; }
.atank-detour__note {
	margin-top: 10px;
	font-size: 12px;
	line-height: 1.45;
	opacity: 0.78;
	font-weight: 500;
}
.atank-detour--good { background: var(--atank-success-bg); color: var(--atank-success); }
.atank-detour--bad { background: #fef2f2; color: #b91c1c; }
.atank-detour--neutral { background: #eff6ff; color: #1d4ed8; }
.atank-hours { margin: 0; padding-left: 18px; }
.atank-hours li { margin: 4px 0; }

.atank-tips,
.atank-calc {
	margin-top: 28px;
	padding-top: 8px;
}
.atank-tips h3,
.atank-calc h3 {
	margin: 0 0 8px;
	font-size: 1.2rem;
}
.atank-tips__live,
.atank-calc__lead {
	margin: 0 0 16px;
	color: var(--atank-muted);
	font-size: 14px;
}
.atank-tips__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.atank-tip {
	display: flex;
	gap: 12px;
	padding: 14px;
	border: 1px solid var(--atank-line);
	border-radius: 14px;
	background: #fff;
}
.atank-tip__icon {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: color-mix(in srgb, var(--atank-accent) 12%, #fff);
	position: relative;
}
.atank-tip__icon::before {
	content: "";
	position: absolute;
	inset: 10px;
	background: currentColor;
	color: var(--atank-accent);
	-webkit-mask: center / contain no-repeat;
	mask: center / contain no-repeat;
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 .001 20.001A10 10 0 0 0 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 .001 20.001A10 10 0 0 0 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/></svg>");
}
.atank-tip__icon[data-icon="clock"]::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 11H7V11h4V6h2v7z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 11H7V11h4V6h2v7z'/></svg>");
}
.atank-tip__icon[data-icon="map"]::before,
.atank-tip__icon[data-icon="route"]::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/></svg>");
}
.atank-tip__icon[data-icon="leaf"]::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66C7.23 17.31 9 14 12 12c0 0 6-3 6-8h-1z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66C7.23 17.31 9 14 12 12c0 0 6-3 6-8h-1z'/></svg>");
}
.atank-tip__icon[data-icon="wallet"]::before {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M21 7H3V5h18v2zm0 2v10H3V9h18zm-4 5a1.5 1.5 0 1 0 .001-2.999A1.5 1.5 0 0 0 17 14z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M21 7H3V5h18v2zm0 2v10H3V9h18zm-4 5a1.5 1.5 0 1 0 .001-2.999A1.5 1.5 0 0 0 17 14z'/></svg>");
}
.atank-tip h4 { margin: 0 0 4px; font-size: 15px; }
.atank-tip p { margin: 0; font-size: 13px; color: var(--atank-muted); line-height: 1.45; }

.atank-calc {
	border: 1px solid var(--atank-line);
	border-radius: 16px;
	padding: 18px;
	background: #fff;
}
.atank-calc__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.atank-calc label span {
	display: block;
	font-size: 12px;
	color: var(--atank-muted);
	margin-bottom: 6px;
}
.atank-calc__result {
	margin-top: 14px;
	padding: 0;
	background: none;
	font-weight: 400;
}
.atank-calc__result .atank-detour { margin: 0; }

.atank-attr {
	margin: 22px 0 0;
	color: #9ca3af;
	font-size: 12px;
	line-height: 1.45;
}
.atank-attr a { color: inherit; }

.atank--compact .atank-map-wrap,
.atank--compact .atank-tips,
.atank--compact .atank-calc,
.atank--map .atank-tips,
.atank--map .atank-calc { display: none; }

.atank-card,
.atank-tip { animation: atankIn .35s ease both; }
@keyframes atankIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: none; }
}

.atank-stats__empty {
	margin: 0 0 16px;
	color: var(--atank-muted);
	font-size: 14px;
}
.atank-stats__kpis {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}
.atank-stats__kpi {
	padding: 16px 14px;
	border-radius: 16px;
	background: var(--atank-soft);
	border: 1px solid var(--atank-line);
}
.atank-stats__label {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--atank-muted);
	margin-bottom: 6px;
}
.atank-stats__value {
	display: block;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--atank-text);
}
.atank-stats__panel {
	margin: 0 0 16px;
	padding: 16px;
	border: 1px solid var(--atank-line);
	border-radius: 16px;
	background: color-mix(in srgb, var(--atank-bg) 88%, #fff);
}
.atank-stats__panel h3 {
	margin: 0 0 8px;
	font-size: 0.95rem;
}
.atank-stats__hint {
	margin: 0 0 12px;
	font-size: 12px;
	color: var(--atank-muted);
	line-height: 1.45;
}
.atank-daycourse__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	counter-reset: atank-step;
}
.atank-daycourse__steps li {
	counter-increment: atank-step;
	padding: 12px 12px 12px 40px;
	border-radius: 14px;
	border: 1px solid var(--atank-line);
	background: var(--atank-soft);
	position: relative;
}
.atank-daycourse__steps li::before {
	content: counter(atank-step);
	position: absolute;
	left: 12px;
	top: 12px;
	width: 20px;
	height: 20px;
	border-radius: 99px;
	background: var(--atank-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 20px;
	text-align: center;
}
.atank-daycourse__steps strong {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
}
.atank-daycourse__steps span {
	display: block;
	font-size: 12px;
	color: var(--atank-muted);
	line-height: 1.45;
}
.atank-daycourse-svg { display: block; width: 100%; height: auto; }
.atank-daycourse-svg__mark { font-size: 11px; font-weight: 700; fill: #b91c1c; }
.atank-chart-hover { position: relative; }
.atank-hit { cursor: pointer; }
.atank-chart-tip {
	position: absolute;
	z-index: 5;
	max-width: 240px;
	padding: 8px 10px;
	border-radius: 10px;
	background: #111827;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.45;
	white-space: pre-line;
	pointer-events: none;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}
.atank-price-svg {
	display: block;
	width: 100%;
	height: auto;
}
.atank-price-svg__axis {
	font-size: 11px;
	fill: var(--atank-muted);
}
.atank-price-svg__line {
	stroke-dasharray: none;
	stroke-dashoffset: 0;
}
.atank-stats.is-on .atank-price-svg__line {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	animation: atankDraw 1.1s ease both;
}
.atank-price-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--atank-muted);
}
.atank-price-legend i {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 99px;
	margin-right: 6px;
	vertical-align: -1px;
}
.atank-region__title {
	margin: 0 0 4px;
	font-size: 1.15rem;
	letter-spacing: -0.03em;
}
.atank-region__kicker,
.atank-region__meta,
.atank-region__empty {
	margin: 0 0 14px;
	color: var(--atank-muted);
	font-size: 13px;
}
.atank-region__tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 12px;
}
.atank-region__tile {
	padding: 14px 12px;
	border-radius: 16px;
	border: 1px solid var(--atank-line);
	background: var(--atank-soft);
}
.atank-region__tile span {
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--atank-muted);
	margin-bottom: 6px;
}
.atank-region__tile strong {
	display: block;
	font-size: clamp(1.15rem, 2.6vw, 1.55rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.1;
}
.atank-region__tile--min { background: var(--atank-success-bg); color: var(--atank-success); }
.atank-region__tile--min span { color: var(--atank-success); }
.atank-region__tile--max { background: #fef2f2; color: #b91c1c; }
.atank-region__tile--max span { color: #b91c1c; }
.atank-region__section {
	margin: 16px 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--atank-muted);
}
.atank-region__slots {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin-bottom: 8px;
}
.atank-region__slot {
	padding: 10px 8px;
	border-radius: 12px;
	border: 1px solid var(--atank-line);
	background: var(--atank-soft);
	text-align: center;
}
.atank-region__slot span,
.atank-region__slot em {
	display: block;
	font-size: 11px;
	font-style: normal;
	color: var(--atank-muted);
}
.atank-region__slot strong {
	display: block;
	margin: 4px 0 2px;
	font-size: 1.05rem;
	letter-spacing: -0.03em;
}
.atank-region__slot--empty { opacity: 0.45; }
.atank-region .atank-price-svg { margin: 4px 0 10px; }

@keyframes atankDraw {
	to { stroke-dashoffset: 0; }
}
.atank-stats__chart {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 170px;
}
.atank-stats__col {
	flex: 1;
	min-width: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}
.atank-stats__col-val {
	font-size: 10px;
	font-weight: 700;
	color: var(--atank-muted);
	margin-bottom: 4px;
}
.atank-stats__bar {
	width: 100%;
	max-width: 22px;
	height: var(--atank-stats-pct, 8%);
	border-radius: 7px 7px 3px 3px;
	background: linear-gradient(180deg, var(--atank-accent) 0%, color-mix(in srgb, var(--atank-accent) 55%, #111) 100%);
	transform-origin: bottom center;
	transform: scaleY(0);
}
.atank-stats.is-on .atank-stats__bar {
	animation: atankGrowY 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: var(--atank-stats-delay, 0ms);
}
.atank-stats__col-label {
	margin-top: 6px;
	font-size: 10px;
	color: var(--atank-muted);
	font-weight: 600;
}
.atank-stats__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.atank-stats__rows,
.atank-stats__places {
	list-style: none;
	margin: 0;
	padding: 0;
}
.atank-stats__rows li { margin: 0 0 12px; }
.atank-stats__row-top {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 6px;
}
.atank-stats__track {
	height: 8px;
	border-radius: 99px;
	background: var(--atank-soft);
	overflow: hidden;
}
.atank-stats__track span {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: var(--atank-accent);
}
.atank-stats.is-on .atank-stats__track span {
	width: var(--atank-stats-pct, 0%);
	transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--atank-stats-delay, 0ms);
}
.atank-stats__places li {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	margin: 0 0 8px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--atank-soft);
	font-size: 14px;
}
.atank-stats__places li::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	background: color-mix(in srgb, var(--atank-accent) 14%, transparent);
}
.atank-stats.is-on .atank-stats__places li::before {
	width: var(--atank-stats-pct, 0%);
	transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--atank-stats-delay, 0ms);
}
.atank-stats__place,
.atank-stats__places strong { position: relative; }
.atank-stats__places li:nth-child(1) { box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--atank-accent) 22%, transparent); }

@keyframes atankGrowY {
	from { transform: scaleY(0); }
	to { transform: scaleY(1); }
}

@media (max-width: 860px) {
	.atank-cards,
	.atank-tips__grid,
	.atank-calc__grid,
	.atank-stats__kpis,
	.atank-stats__grid { grid-template-columns: 1fr 1fr; }
	.atank-search__row { grid-template-columns: 1fr 1fr; }
	.atank-btn--primary { grid-column: 1 / -1; }
	.atank-shell { padding: 20px 16px 16px; }
	.atank-map { height: 320px; }
}

@media (max-width: 560px) {
	.atank-stats__kpis,
	.atank-stats__grid,
	.atank-region__tiles,
	.atank-region__slots,
	.atank-daycourse__steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.atank-card, .atank-tip, .atank-btn,
	.atank-stats.is-on .atank-stats__bar { animation: none; transition: none; }
	.atank-stats .atank-stats__bar { transform: none; }
}
