/* Dealer partners landing — auction hall + partner pitch */

.gooshi-dealer-land {
	--dl-ink: #0f172a;
	--dl-muted: #64748b;
	--dl-line: rgba(15, 23, 42, 0.1);
	--dl-surface: #ffffff;
	--dl-soft: #f1f5f9;
	--dl-accent: #0b6bcb;
	--dl-accent-deep: #084a8c;
	--dl-live: #0f766e;
	--dl-sold: #475569;
	color: var(--dl-ink);
}

.gooshi-dealer-land-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem 2.5rem;
	background:
		radial-gradient(ellipse 80% 60% at 10% 0%, rgba(11, 107, 203, 0.16), transparent 55%),
		radial-gradient(ellipse 50% 40% at 90% 20%, rgba(15, 118, 110, 0.12), transparent 50%),
		linear-gradient(180deg, #e8eef7 0%, #f8fafc 55%, #ffffff 100%);
}

.gooshi-dealer-land-hero-glow {
	position: absolute;
	inset: auto -10% -40% 40%;
	height: 55%;
	background: radial-gradient(circle, rgba(11, 107, 203, 0.18), transparent 70%);
	pointer-events: none;
}

.gooshi-dealer-land-hero-inner {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.35fr 0.9fr;
	gap: clamp(1.5rem, 4vw, 2.75rem);
	align-items: center;
}

.gooshi-dealer-land-eyebrow {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--dl-accent);
	margin-bottom: 0.75rem;
}

.gooshi-dealer-land-title {
	margin: 0 0 1rem;
	font-size: clamp(1.85rem, 4.2vw, 3rem);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.gooshi-dealer-land-title span {
	display: block;
	color: var(--dl-accent-deep);
}

.gooshi-dealer-land-lead {
	margin: 0 0 1.5rem;
	max-width: 36rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--dl-muted);
}

.gooshi-dealer-land-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.gooshi-dealer-land-hero-card {
	background: var(--dl-surface);
	border: 1px solid var(--dl-line);
	border-radius: 1.25rem;
	padding: 1.25rem 1.35rem;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.gooshi-dealer-land-hero-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
	margin-bottom: 1rem;
}

.gooshi-dealer-land-live-dot {
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 50%;
	background: var(--dl-live);
	box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.5);
	animation: gooshi-dl-pulse 1.6s ease-out infinite;
}

@keyframes gooshi-dl-pulse {
	0% { box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.45); }
	70% { box-shadow: 0 0 0 10px rgba(15, 118, 110, 0); }
	100% { box-shadow: 0 0 0 0 rgba(15, 118, 110, 0); }
}

.gooshi-dealer-land-pulse {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.gooshi-dealer-land-pulse li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.65rem 0.75rem;
	background: var(--dl-soft);
	border-radius: 0.75rem;
}

.gooshi-dealer-land-pulse strong {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--dl-accent-deep);
}

.gooshi-dealer-land-pulse span {
	font-size: 0.8125rem;
	color: var(--dl-muted);
}

.gooshi-dealer-land-pulse-note {
	margin: 1rem 0 0;
	font-size: 0.8125rem;
	color: var(--dl-muted);
	line-height: 1.5;
}

.gooshi-dealer-land-stats,
.gooshi-dealer-land-compare,
.gooshi-dealer-land-hall,
.gooshi-dealer-land-steps,
.gooshi-dealer-land-benefits {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(2rem, 5vw, 3.5rem) 1.25rem;
}

.gooshi-dealer-land-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.gooshi-dealer-land-stat {
	background: var(--dl-surface);
	border: 1px solid var(--dl-line);
	border-radius: 1rem;
	padding: 1.15rem 1.1rem;
}

.gooshi-dealer-land-stat .gooshi-icon,
.gooshi-dealer-land-stat .material-symbols-outlined {
	color: var(--dl-accent);
	font-size: 1.5rem;
	margin-bottom: 0.65rem;
}

.gooshi-dealer-land-stat h3 {
	margin: 0 0 0.35rem;
	font-size: 1rem;
}

.gooshi-dealer-land-stat p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--dl-muted);
}

.gooshi-dealer-land-section-head {
	margin-bottom: 1.5rem;
	max-width: 40rem;
}

.gooshi-dealer-land-section-head h2 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.45rem, 3vw, 2rem);
	letter-spacing: -0.02em;
}

.gooshi-dealer-land-section-head p {
	margin: 0;
	color: var(--dl-muted);
	line-height: 1.65;
}

.gooshi-dealer-land-compare-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--dl-line);
	border-radius: 1rem;
	background: var(--dl-surface);
}

.gooshi-dealer-land-compare-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 560px;
}

.gooshi-dealer-land-compare-table th,
.gooshi-dealer-land-compare-table td {
	padding: 0.9rem 1rem;
	text-align: center;
	border-bottom: 1px solid var(--dl-line);
	font-size: 0.875rem;
}

.gooshi-dealer-land-compare-table th:first-child,
.gooshi-dealer-land-compare-table td:first-child {
	text-align: start;
	font-weight: 600;
}

.gooshi-dealer-land-compare-table thead th {
	background: var(--dl-soft);
	font-weight: 700;
}

.gooshi-dealer-land-compare-table th.is-accent,
.gooshi-dealer-land-compare-table td.is-accent {
	background: rgba(11, 107, 203, 0.06);
	color: var(--dl-accent-deep);
}

.gooshi-dealer-land-yes {
	display: inline-flex;
	color: var(--dl-live);
}

.gooshi-dealer-land-no {
	display: inline-flex;
	color: #cbd5e1;
}

.gooshi-dealer-land-hall-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--dl-line);
	padding-bottom: 0;
}

.gooshi-dealer-land-hall-tab {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 0.15rem 0.85rem;
	border: none;
	border-radius: 0;
	background: transparent;
	color: var(--dl-muted);
	font-weight: 700;
	font-size: 0.9375rem;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}

.gooshi-dealer-land-hall-tab.is-active {
	color: var(--dl-accent-deep);
	border-bottom-color: #f59e0b;
	background: transparent;
}

.gooshi-dealer-land-tab-count {
	display: inline-flex;
	min-width: 1.35rem;
	justify-content: center;
	padding: 0.05rem 0.4rem;
	border-radius: 999px;
	background: var(--dl-soft);
	font-size: 0.6875rem;
	font-weight: 700;
}

.gooshi-dealer-land-hall-tab.is-active .gooshi-dealer-land-tab-count {
	background: rgba(245, 158, 11, 0.15);
	color: #b45309;
}

.gooshi-dealer-land-hall-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.85rem;
	flex-wrap: wrap;
}

.gooshi-dealer-land-hall-search {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex: 1;
	min-width: 220px;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--dl-line);
	border-radius: 0.75rem;
	background: var(--dl-surface);
	color: var(--dl-muted);
	font-size: 0.875rem;
}

.gooshi-dealer-land-hall-sort {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--dl-muted);
	font-size: 0.8125rem;
	font-weight: 600;
	white-space: nowrap;
}

.gooshi-dealer-land-hall-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--dl-line);
	border-radius: 1rem;
	background: var(--dl-surface);
}

.gooshi-dealer-land-hall-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 920px;
}

.gooshi-dealer-land-hall-table thead th {
	padding: 0.85rem 0.9rem;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--dl-muted);
	background: #fafbfc;
	border-bottom: 1px solid var(--dl-line);
	white-space: nowrap;
}

.gooshi-dealer-land-hall-table thead th.col-device {
	text-align: start;
}

.gooshi-dealer-land-hall-table tbody td {
	padding: 0.85rem 0.9rem;
	text-align: center;
	border-bottom: 1px solid var(--dl-line);
	font-size: 0.875rem;
	vertical-align: middle;
}

.gooshi-dealer-land-hall-table tbody tr:last-child td {
	border-bottom: none;
}

.gooshi-dealer-land-hall-table tbody tr:hover {
	background: rgba(11, 107, 203, 0.03);
}

.gooshi-dealer-land-hall-table .col-device {
	text-align: start;
	min-width: 240px;
}

.gooshi-dealer-land-device {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.gooshi-dealer-land-device-thumb {
	position: relative;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 0.65rem;
	overflow: hidden;
	background: var(--dl-soft);
	border: 1px solid var(--dl-line);
}

.gooshi-dealer-land-device-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gooshi-dealer-land-status-dot {
	position: absolute;
	top: 4px;
	inset-inline-start: 4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1.5px solid #fff;
}

.gooshi-dealer-land-status-dot.is-live {
	background: #f59e0b;
}

.gooshi-dealer-land-status-dot.is-sold {
	background: #22c55e;
}

.gooshi-dealer-land-device-text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.gooshi-dealer-land-device-text strong {
	font-size: 0.9375rem;
	line-height: 1.35;
}

.gooshi-dealer-land-device-text small {
	font-size: 0.75rem;
	color: var(--dl-muted);
}

.gooshi-dealer-land-quality {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	padding: 0.2rem 0.45rem;
	border-radius: 0.45rem;
	background: rgba(34, 197, 94, 0.12);
	color: #15803d;
	font-weight: 800;
	font-size: 0.8125rem;
}

.gooshi-dealer-land-live-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(245, 158, 11, 0.14);
	color: #b45309;
	font-size: 0.75rem;
	font-weight: 700;
	white-space: nowrap;
}

.gooshi-dealer-land-price-masked {
	font-weight: 800;
	color: var(--dl-ink);
	letter-spacing: 0.02em;
}

.gooshi-dealer-land-hall-table .col-price {
	background: rgba(241, 245, 249, 0.65);
}

.gooshi-dealer-land-live-time {
	font-weight: 700;
	color: #b45309;
	white-space: nowrap;
}

.gooshi-dealer-land-detail-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.55rem;
	border: 1px solid var(--dl-line);
	color: var(--dl-accent);
	background: var(--dl-surface);
	text-decoration: none;
}

.gooshi-dealer-land-detail-btn:hover {
	background: rgba(11, 107, 203, 0.08);
	color: var(--dl-accent-deep);
}

.gooshi-dealer-land-hall-grid {
	display: none;
}

.gooshi-dealer-land-hall-card {
	background: var(--dl-surface);
	border: 1px solid var(--dl-line);
	border-radius: 1.1rem;
	padding: 1.1rem 1.15rem 1.15rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	position: relative;
	overflow: hidden;
}

.gooshi-dealer-land-hall-card.is-live {
	border-color: rgba(15, 118, 110, 0.28);
	box-shadow: 0 10px 28px rgba(15, 118, 110, 0.08);
}

.gooshi-dealer-land-hall-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.gooshi-dealer-land-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
}

.gooshi-dealer-land-badge.is-live {
	background: rgba(15, 118, 110, 0.12);
	color: var(--dl-live);
}

.gooshi-dealer-land-badge.is-sold {
	background: var(--dl-soft);
	color: var(--dl-sold);
}

.gooshi-dealer-land-badge .gooshi-icon,
.gooshi-dealer-land-badge .material-symbols-outlined {
	font-size: 0.95rem;
}

.gooshi-dealer-land-hall-time {
	font-size: 0.75rem;
	color: var(--dl-muted);
}

.gooshi-dealer-land-hall-card h3 {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.35;
}

.gooshi-dealer-land-hall-meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.gooshi-dealer-land-hall-meta li {
	background: var(--dl-soft);
	border-radius: 0.65rem;
	padding: 0.45rem 0.55rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.gooshi-dealer-land-hall-meta span {
	font-size: 0.6875rem;
	color: var(--dl-muted);
}

.gooshi-dealer-land-hall-meta strong {
	font-size: 0.8125rem;
	font-weight: 700;
}

.gooshi-dealer-land-hall-price {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 0.25rem;
}

.gooshi-dealer-land-hall-price-label {
	font-size: 0.8125rem;
	color: var(--dl-muted);
}

.gooshi-dealer-land-hall-price-value {
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	display: inline-flex;
	align-items: baseline;
	gap: 0.3rem;
}

.gooshi-dealer-land-hall-price-value.is-masked {
	filter: none;
	color: var(--dl-accent-deep);
	letter-spacing: 0.02em;
}

.gooshi-dealer-land-hall-price-value small {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--dl-muted);
}

.gooshi-dealer-land-hall-locked {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.7rem 0.8rem;
	border-radius: 0.75rem;
	background: linear-gradient(90deg, rgba(15, 23, 42, 0.04), rgba(11, 107, 203, 0.08));
	border: 1px dashed rgba(11, 107, 203, 0.28);
}

.gooshi-dealer-land-hall-locked > div {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	font-size: 0.75rem;
	color: var(--dl-muted);
}

.gooshi-dealer-land-unlock {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--dl-accent);
	text-decoration: none;
	white-space: nowrap;
}

.gooshi-dealer-land-unlock:hover {
	color: var(--dl-accent-deep);
}

.gooshi-dealer-land-steps-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.gooshi-dealer-land-steps-list > li {
	display: grid;
	grid-template-columns: auto auto 1fr;
	gap: 0.85rem;
	align-items: start;
	padding: 1rem 1.1rem;
	border: 1px solid var(--dl-line);
	border-radius: 1rem;
	background: var(--dl-surface);
}

.gooshi-dealer-land-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: var(--dl-accent);
	color: #fff;
	font-weight: 800;
	font-size: 0.8125rem;
}

.gooshi-dealer-land-step-icon .gooshi-icon,
.gooshi-dealer-land-step-icon .material-symbols-outlined {
	color: var(--dl-accent);
	font-size: 1.5rem;
}

.gooshi-dealer-land-steps-list h3 {
	margin: 0 0 0.3rem;
	font-size: 1.05rem;
}

.gooshi-dealer-land-steps-list p {
	margin: 0;
	color: var(--dl-muted);
	line-height: 1.55;
	font-size: 0.9rem;
}

.gooshi-dealer-land-benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.gooshi-dealer-land-benefit {
	padding: 1.25rem;
	border-radius: 1rem;
	border: 1px solid var(--dl-line);
	background: linear-gradient(160deg, #fff 0%, #f8fafc 100%);
}

.gooshi-dealer-land-benefit .gooshi-icon,
.gooshi-dealer-land-benefit .material-symbols-outlined {
	color: var(--dl-accent);
	font-size: 1.65rem;
	margin-bottom: 0.65rem;
}

.gooshi-dealer-land-benefit h3 {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
}

.gooshi-dealer-land-benefit p {
	margin: 0;
	color: var(--dl-muted);
	line-height: 1.55;
	font-size: 0.9rem;
}

.gooshi-dealer-land-cta {
	padding: 0 1.25rem 3.5rem;
}

.gooshi-dealer-land-cta-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(1.75rem, 4vw, 2.75rem);
	border-radius: 1.35rem;
	background:
		radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
		linear-gradient(135deg, #084a8c 0%, #0b6bcb 55%, #0f766e 120%);
	color: #fff;
	text-align: center;
}

.gooshi-dealer-land-cta-inner h2 {
	margin: 0 0 0.65rem;
	font-size: clamp(1.4rem, 3vw, 2rem);
}

.gooshi-dealer-land-cta-inner > p {
	margin: 0 auto 1.35rem;
	max-width: 34rem;
	opacity: 0.92;
	line-height: 1.65;
}

.gooshi-dealer-land-cta .gooshi-btn-primary {
	background: #fff;
	color: var(--dl-accent-deep);
}

.gooshi-dealer-land-cta .gooshi-btn-secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
}

.gooshi-dealer-land-cta .gooshi-dealer-land-hero-actions {
	justify-content: center;
}

@media (max-width: 900px) {
	.gooshi-dealer-land-hero-inner {
		grid-template-columns: 1fr;
	}
	.gooshi-dealer-land-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.gooshi-dealer-land-benefits-grid {
		grid-template-columns: 1fr;
	}
	.gooshi-dealer-land-hall-table thead {
		display: none;
	}
	.gooshi-dealer-land-hall-table,
	.gooshi-dealer-land-hall-table tbody,
	.gooshi-dealer-land-hall-table tr,
	.gooshi-dealer-land-hall-table td {
		display: block;
		min-width: 0;
	}
	.gooshi-dealer-land-hall-table tbody tr {
		padding: 0.85rem;
		border-bottom: 1px solid var(--dl-line);
	}
	.gooshi-dealer-land-hall-table tbody td {
		display: grid;
		grid-template-columns: 7.5rem 1fr;
		gap: 0.5rem;
		text-align: start;
		padding: 0.35rem 0;
		border: none;
	}
	.gooshi-dealer-land-hall-table tbody td::before {
		content: attr(data-label);
		font-size: 0.75rem;
		color: var(--dl-muted);
		font-weight: 600;
	}
	.gooshi-dealer-land-hall-table .col-device {
		display: block;
		padding-bottom: 0.65rem;
	}
	.gooshi-dealer-land-hall-table .col-device::before {
		display: none;
	}
	.gooshi-dealer-land-hall-table .col-price {
		background: transparent;
	}
}

@media (max-width: 560px) {
	.gooshi-dealer-land-stats-grid {
		grid-template-columns: 1fr;
	}
	.gooshi-dealer-land-hall-meta {
		grid-template-columns: 1fr;
	}
	.gooshi-dealer-land-hall-locked {
		flex-direction: column;
		align-items: flex-start;
	}
	.gooshi-dealer-land-steps-list > li {
		grid-template-columns: auto 1fr;
	}
	.gooshi-dealer-land-step-icon {
		display: none;
	}
}
