/* Unsold Lots — monochrome, monospace, Notion / iOS-adjacent clarity */
:root {
	--pn-bg: #ffffff;
	--pn-surface: #ffffff;
	--pn-surface-subtle: #fafafa;
	--pn-border: #e8e8e8;
	--pn-border-strong: #000000;
	--pn-text: #000000;
	--pn-muted: rgba(0, 0, 0, 0.48);
	--pn-font: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--pn-radius: 10px;
	--pn-radius-sm: 6px;
	--pn-max: 1400px;
	--pn-tap: 44px;
}

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	min-height: 100vh;
	min-height: 100dvh;
	font-family: var(--pn-font);
	font-size: 17px;
	line-height: 1.47;
	color: var(--pn-text);
	background: var(--pn-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overscroll-behavior-y: none;
}

a {
	color: var(--pn-text);
	text-decoration: underline;
	text-decoration-color: rgba(0, 0, 0, 0.28);
	text-underline-offset: 3px;
}

a:hover {
	text-decoration-color: var(--pn-text);
}

.pn-wrap {
	max-width: var(--pn-max);
	margin: 0 auto;
	padding: 0 24px;
}

/* Header — sticky, flat (no blur / no gradients) */
.pn-site-header {
	background: var(--pn-bg);
	border-bottom: 1px solid var(--pn-border);
	position: sticky;
	top: 0;
	z-index: 100;
	padding-top: env(safe-area-inset-top);
}

.pn-site-header .pn-wrap {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 0;
	padding-top: 14px;
	padding-bottom: 14px;
}

.pn-brand {
	font-weight: 600;
	font-size: 15px;
	letter-spacing: -0.01em;
	color: var(--pn-text);
	text-decoration: none;
	line-height: 1.3;
	text-align: center;
}

.pn-brand:hover {
	text-decoration: none;
	opacity: 0.55;
	color: var(--pn-text);
}

.pn-tagline {
	font-size: 13px;
	color: var(--pn-muted);
	margin: 4px 0 0;
	line-height: 1.35;
	font-weight: 400;
}

.pn-nav {
	display: flex;
	gap: 8px 20px;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 14px;
}

.pn-nav a {
	color: var(--pn-muted);
	text-decoration: none;
	font-weight: 400;
	padding: 8px 0;
	min-height: var(--pn-tap);
	display: inline-flex;
	align-items: center;
}

.pn-nav a:hover {
	color: var(--pn-text);
}

.pn-header-copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	text-align: left;
	margin-bottom: 0;
}

.pn-header-title {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--pn-text);
	line-height: 1.25;
	text-decoration: none;
}

a.pn-header-title:hover {
	text-decoration: none;
	opacity: 0.75;
}

.pn-header-blurb {
	margin: 0;
	font-size: 12px;
	line-height: 1.35;
	color: var(--pn-muted);
	text-align: right;
	flex: 1 1 auto;
}

main.pn-main {
	padding: 28px 0 calc(56px + env(safe-area-inset-bottom));
}

.pn-page-title {
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0 0 8px;
	line-height: 1.25;
}

.pn-page-intro {
	color: var(--pn-muted);
	margin: 0 0 24px;
	max-width: 36rem;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 400;
}

.pn-card-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--pn-border);
	border-radius: var(--pn-radius);
	overflow: hidden;
	background: var(--pn-surface);
}

.pn-card {
	background: var(--pn-surface);
	border: none;
	border-bottom: 1px solid var(--pn-border);
	border-radius: 0;
	padding: 16px 18px;
	transition: background 0.12s ease;
}

.pn-card:last-child {
	border-bottom: none;
}

.pn-card:hover {
	background: var(--pn-surface-subtle);
}

.pn-card:active {
	background: #f3f3f3;
}

.pn-card-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 6px;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.pn-card-title a {
	color: var(--pn-text);
	text-decoration: none;
}

.pn-card-title a:hover {
	text-decoration: underline;
	text-decoration-color: rgba(0, 0, 0, 0.35);
}

.pn-meta-row {
	font-family: var(--pn-font);
	font-size: 12px;
	color: var(--pn-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	margin-bottom: 8px;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.pn-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border: 1px solid var(--pn-border-strong);
	background: var(--pn-bg);
	color: var(--pn-text);
	line-height: 1;
	text-align: center;
	white-space: nowrap;
}

.pn-badge--unsold {
	border-color: #15803d;
	background: transparent;
	color: #15803d;
}

.pn-badge--sold {
	border-color: var(--pn-border);
	background: var(--pn-surface-subtle);
	color: var(--pn-muted);
	font-weight: 500;
}

.pn-badge--withdrawn {
	border-color: var(--pn-border);
	background: transparent;
	color: var(--pn-muted);
	font-weight: 500;
}

.pn-badge--unknown {
	border-color: var(--pn-border);
	background: transparent;
	color: var(--pn-text);
}

.pn-estimate {
	font-size: 15px;
	color: var(--pn-text);
	margin: 0;
	font-weight: 400;
	font-variant-numeric: tabular-nums;
}

.pn-empty {
	padding: 48px 24px;
	text-align: center;
	color: var(--pn-muted);
	border: 1px dashed var(--pn-border);
	border-radius: var(--pn-radius);
	background: var(--pn-surface-subtle);
	font-size: 15px;
	line-height: 1.55;
}

.pn-empty strong {
	color: var(--pn-text);
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 16px;
}

/* Single lot */
.pn-single-head {
	margin-bottom: 28px;
}

.pn-single-head--about {
	margin-bottom: 10px;
}

.pn-back {
	font-size: 14px;
	color: var(--pn-muted);
	display: inline-block;
	margin-bottom: 16px;
	text-decoration: none;
	font-weight: 400;
}

.pn-back:hover {
	color: var(--pn-text);
	text-decoration: underline;
}

.pn-single-title {
	font-size: clamp(22px, 5vw, 28px);
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
	line-height: 1.25;
}

.pn-panel {
	background: var(--pn-surface);
	border: 1px solid var(--pn-border);
	border-radius: var(--pn-radius);
	padding: 22px 20px;
	margin-bottom: 18px;
}

.pn-panel h2 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--pn-muted);
	margin: 0 0 14px;
	font-weight: 600;
}

.pn-estimate--lead {
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.35;
	font-variant-numeric: tabular-nums;
}

.pn-muted-text {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.45;
	color: var(--pn-muted);
	max-width: 40rem;
}

.pn-panel-actions {
	margin: 18px 0 0;
}

.pn-condition-report {
	margin-top: 14px;
	padding-top: 10px;
	border-top: 1px solid var(--pn-border);
}

.pn-condition-report__btn {
	margin-top: 6px;
	min-height: 38px;
	padding: 0 14px;
	font-size: 13px;
	width: 100%;
	justify-content: center;
}

.pn-field {
	margin-bottom: 14px;
}

.pn-field:last-child {
	margin-bottom: 0;
}

.pn-field label {
	display: block;
	font-size: 13px;
	color: var(--pn-muted);
	margin-bottom: 6px;
	font-weight: 400;
}

.pn-field select,
.pn-field input[type="text"],
.pn-field textarea,
.pn-field input[type="range"] {
	width: 100%;
	max-width: 100%;
	min-height: var(--pn-tap);
	padding: 10px 12px;
	border-radius: var(--pn-radius-sm);
	border: 1px solid var(--pn-border);
	background: var(--pn-bg);
	color: var(--pn-text);
	font-family: var(--pn-font);
	font-size: 16px;
	-webkit-appearance: none;
	appearance: none;
}

.pn-field textarea {
	resize: vertical;
	min-height: 128px;
	line-height: 1.4;
}

.pn-field input[type="range"] {
	padding: 0 4px;
	height: var(--pn-tap);
	border: none;
	background: transparent;
	touch-action: pan-x;
	cursor: pointer;
}

.pn-field input[type="range"]::-webkit-slider-runnable-track {
	height: 6px;
	background: #d6d6d6;
	border-radius: 999px;
}

.pn-field input[type="range"]::-moz-range-track {
	height: 6px;
	background: #d6d6d6;
	border-radius: 999px;
}

.pn-field input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #000;
	border: 2px solid #fff;
	box-shadow: none;
	margin-top: -6px;
	cursor: pointer;
}

.pn-field input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #000;
	border: 2px solid #fff;
	box-shadow: none;
	cursor: pointer;
}

.pn-field-hint {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--pn-muted);
	font-weight: 400;
}

.pn-commission-note {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--pn-muted);
}

.pn-hammer-line {
	margin: 10px 0 0;
	font-size: 14px;
	color: var(--pn-muted);
	font-variant-numeric: tabular-nums;
}

.pn-offer-scale {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	margin: 6px 0 4px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	color: var(--pn-muted);
}

.pn-offer-slider-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 8px;
	width: 100%;
	max-width: 100%;
	transition: transform 220ms ease-in-out, filter 220ms ease-in-out;
	will-change: transform;
	--pn-drag-lift: -1px;
	--pn-drag-scale: 1;
	filter: saturate(1);
	transform-origin: 50% 50%;
}

.pn-offer-slider-row.is-dragging {
	transform: translateY(var(--pn-drag-lift, -1px)) scale(var(--pn-drag-scale, 1));
	filter: saturate(1.04);
}

.pn-offer-slider-row.is-releasing {
	transition-duration: 460ms;
	transition-timing-function: cubic-bezier(0.12, 0.85, 0.22, 1);
}

.pn-offer-slider-row.is-gliding {
	transition-duration: 520ms;
	transition-timing-function: cubic-bezier(0.05, 0.85, 0.16, 1);
	filter: saturate(1.06);
}

.pn-offer-slider-row.is-fast .pn-offer-range-value {
	letter-spacing: -0.005em;
}

.pn-offer-slider-row.is-accelerating .pn-offer-range-value {
	opacity: 0.95;
}

.pn-offer-range {
	flex: 1;
	min-width: 0;
	width: auto !important;
	max-width: none !important;
	--pn-thumb-scale-hover: 1.06;
	--pn-thumb-scale-press: 1.12;
	--pn-thumb-scale-long: 1.16;
}

.pn-field input[type="range"].pn-offer-range::-webkit-slider-runnable-track {
	height: 8px;
	background: linear-gradient(
		90deg,
		#000 0%,
		#000 var(--pn-range-progress, 60%),
		#d6d6d6 var(--pn-range-progress, 60%),
		#d6d6d6 100%
	);
	transition: background 220ms ease-in-out;
}

.pn-field input[type="range"].pn-offer-range::-moz-range-track {
	height: 8px;
	background: linear-gradient(
		90deg,
		#000 0%,
		#000 var(--pn-range-progress, 60%),
		#d6d6d6 var(--pn-range-progress, 60%),
		#d6d6d6 100%
	);
	transition: background 220ms ease-in-out;
}

.pn-offer-range-value {
	flex: 0 0 auto;
	min-width: 6.75rem;
	max-width: 42%;
	text-align: right;
	font-size: 15px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--pn-text);
	transition: transform 220ms ease-in-out, opacity 220ms ease-in-out, letter-spacing 220ms ease-in-out;
	--pn-value-scale: 1.015;
	will-change: transform, opacity;
	transform-origin: 50% 50%;
}

.pn-offer-slider-row.is-dragging .pn-offer-range-value {
	transform: translateY(-1px) scale(var(--pn-value-scale, 1.015));
	opacity: 0.98;
}

.pn-offer-slider-row.is-releasing .pn-offer-range-value {
	animation: pn-slider-release-pop 420ms cubic-bezier(0.1, 0.85, 0.2, 1);
}

.pn-offer-slider-row.is-gliding .pn-offer-range-value {
	animation: pn-slider-release-pop 560ms cubic-bezier(0.08, 0.86, 0.18, 1);
}

.pn-field input[type="range"].pn-offer-range::-webkit-slider-thumb {
	transition: transform 220ms ease-in-out, background-color 220ms ease-in-out;
	transform-origin: 50% 50%;
}

.pn-field input[type="range"].pn-offer-range::-moz-range-thumb {
	transition: transform 220ms ease-in-out, background-color 220ms ease-in-out;
	transform-origin: 50% 50%;
}

.pn-field input[type="range"].pn-offer-range:hover::-webkit-slider-thumb,
.pn-field input[type="range"].pn-offer-range:focus-visible::-webkit-slider-thumb {
	transform: scale(var(--pn-thumb-scale-hover, 1.06));
}

.pn-field input[type="range"].pn-offer-range:hover::-moz-range-thumb,
.pn-field input[type="range"].pn-offer-range:focus-visible::-moz-range-thumb {
	transform: scale(var(--pn-thumb-scale-hover, 1.06));
}

.pn-field input[type="range"].pn-offer-range:active::-webkit-slider-thumb,
.pn-field input[type="range"].pn-offer-range.is-pressing::-webkit-slider-thumb {
	transform: scale(var(--pn-thumb-scale-press, 1.12));
}

.pn-field input[type="range"].pn-offer-range:active::-moz-range-thumb,
.pn-field input[type="range"].pn-offer-range.is-pressing::-moz-range-thumb {
	transform: scale(var(--pn-thumb-scale-press, 1.12));
}

.pn-field input[type="range"].pn-offer-range.is-longpress::-webkit-slider-thumb {
	transform: scale(var(--pn-thumb-scale-long, 1.16));
}

.pn-field input[type="range"].pn-offer-range.is-longpress::-moz-range-thumb {
	transform: scale(var(--pn-thumb-scale-long, 1.16));
}

@keyframes pn-slider-release-pop {
	0% {
		transform: translateY(-1px) scale(1.02);
	}
	55% {
		transform: translateY(0) scale(1.01);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.pn-offer-slider-row,
	.pn-offer-range-value,
	.pn-field input[type="range"].pn-offer-range::-webkit-slider-runnable-track,
	.pn-field input[type="range"].pn-offer-range::-moz-range-track,
	.pn-field input[type="range"].pn-offer-range::-webkit-slider-thumb,
	.pn-field input[type="range"].pn-offer-range::-moz-range-thumb {
		transition: none !important;
	}
}

.pn-single-media {
	margin: 0 0 28px;
	border-radius: var(--pn-radius);
	overflow: hidden;
	border: 1px solid var(--pn-border);
	background: var(--pn-surface-subtle);
	padding: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.pn-single-media-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.pn-single-media__img,
.pn-single-media img {
	display: block;
	width: auto;
	max-width: min(100%, 1240px);
	max-height: min(86vh, 1240px);
	height: auto;
	object-fit: contain;
	vertical-align: middle;
	opacity: 0;
	filter: blur(10px);
	transform: scale(1.01);
	transition: opacity 260ms ease, filter 260ms ease, transform 320ms ease;
	position: relative;
	z-index: 1;
}

.pn-single-media__img.is-ready,
.pn-single-media img.is-ready,
.pn-single-media.is-ready .pn-single-media__img,
.pn-single-media.is-ready img {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
}

.pn-single-media__skeleton {
	position: absolute;
	inset: 8px;
	border-radius: calc(var(--pn-radius-sm) + 2px);
	background: linear-gradient(110deg, #ececec 8%, #f8f8f8 18%, #ececec 33%);
	background-size: 220% 100%;
	animation: pn-single-media-shimmer 1.1s linear infinite;
}

.pn-single-media.is-ready .pn-single-media__skeleton {
	opacity: 0;
	visibility: hidden;
	transition: opacity 180ms ease, visibility 180ms ease;
}

@keyframes pn-single-media-shimmer {
	from {
		background-position: 200% 0;
	}
	to {
		background-position: -200% 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pn-single-media__img,
	.pn-single-media img,
	.pn-single-media__skeleton {
		transition: none !important;
		animation: none !important;
	}
}

.pn-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000' fill-opacity='0.45' d='M1 1.5L6 6l5-4.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

.pn-offer-preview {
	font-family: var(--pn-font);
	font-size: 15px;
	padding: 14px 14px;
	background: var(--pn-surface-subtle);
	border-radius: var(--pn-radius-sm);
	border: 1px solid var(--pn-border);
	margin-top: 12px;
	line-height: 1.45;
	font-variant-numeric: tabular-nums;
	color: var(--pn-text);
	white-space: pre-line;
}

.pn-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: var(--pn-tap);
	padding: 0 20px;
	font-family: var(--pn-font);
	font-size: 16px;
	font-weight: 600;
	border-radius: var(--pn-radius-sm);
	border: none;
	cursor: pointer;
	background: #000000;
	color: #ffffff;
	text-decoration: none;
	margin-top: 14px;
	-webkit-tap-highlight-color: transparent;
}

.pn-btn:hover {
	opacity: 0.88;
	text-decoration: none;
	color: #ffffff;
}

.pn-btn:active {
	opacity: 0.72;
}

.pn-btn--primary-action {
	width: 100%;
	justify-content: center;
	text-align: center;
}

body.pn-tool.pn-app :focus-visible {
	outline: 2px solid var(--pn-border-strong);
	outline-offset: 3px;
}

body.pn-tool.pn-app .pn-btn:focus-visible {
	outline-offset: 4px;
}

.pn-btn--ghost {
	background: transparent;
	border: 1px solid var(--pn-border-strong);
	color: var(--pn-text);
}

.pn-btn--ghost:hover {
	opacity: 1;
	background: var(--pn-surface-subtle);
	color: var(--pn-text);
}

.pn-site-footer {
	border-top: none;
	padding: 20px 0;
	margin-top: auto;
	font-size: 12px;
	color: var(--pn-muted);
	line-height: 1.45;
}

.pn-site-footer .pn-wrap {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.pn-site-footer__brand {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	color: var(--pn-text);
}

.pn-site-footer__brand sup {
	font-size: 10px;
	line-height: 1;
	color: var(--pn-muted);
}

.pn-site-footer a {
	color: var(--pn-muted);
	text-decoration: none;
}

.pn-site-footer a:hover {
	color: var(--pn-text);
	text-decoration: underline;
}

.pn-ui-tooltip {
	position: fixed;
	z-index: 9999;
	max-width: min(320px, calc(100vw - 24px));
	padding: 5px 8px;
	border-radius: 6px;
	border: 1px solid #d4d4d8;
	background: #ffffff;
	color: #111827;
	font-size: 11px;
	line-height: 1.25;
	letter-spacing: 0.01em;
	pointer-events: none;
	opacity: 0;
	transform: translate3d(0, 4px, 0);
	transform-origin: 50% 100%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	transition: opacity 120ms ease, transform 150ms ease;
}

.pn-ui-tooltip.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.pn-alert-bell {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid var(--pn-border);
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
}

.pn-alert-bell.is-active {
	background: #f0fdf4;
	border-color: #16a34a;
}

body.pn-swipe-mode .pn-wrap > .pn-feed-controls,
body.pn-swipe-mode #pn-unsold-feed,
body.pn-swipe-mode #pn-unsold-feed-global,
body.pn-swipe-mode #pn-unsold-sentinel,
body.pn-swipe-mode #pn-category-empty {
	display: none !important;
}

.pn-swipe-deck {
	position: fixed;
	inset: 72px 14px 96px;
	z-index: 160;
	display: none;
	pointer-events: none;
}

body.pn-swipe-mode .pn-swipe-deck {
	display: block;
}

.pn-swipe-stage {
	position: absolute;
	inset: 0;
}

.pn-swipe-card {
	position: absolute;
	inset: 8px;
	pointer-events: none;
	transform-origin: 50% 65%;
	--pn-swipe-stack-shift: 0px;
	--pn-swipe-stack-scale: 1;
	transform: translateY(var(--pn-swipe-stack-shift)) scale(var(--pn-swipe-stack-scale));
	transition: transform 220ms ease, opacity 220ms ease;
	display: grid;
	place-items: center;
}

.pn-swipe-card.is-top {
	pointer-events: auto;
}

.pn-swipe-card__frame {
	position: relative;
	width: 392px;
	max-width: calc(100vw - 44px);
	height: 560px;
	max-height: calc(100dvh - 240px);
	transition: transform 220ms ease, opacity 220ms ease;
}

.pn-swipe-card .pn-lot-row,
.pn-swipe-card .pn-lot-row__inner {
	height: 100%;
	margin: 0;
}

.pn-swipe-card.is-gone-left .pn-swipe-card__frame {
	transform: translateX(-130%) rotate(-18deg);
	opacity: 0;
}

.pn-swipe-card.is-gone-right .pn-swipe-card__frame {
	transform: translateX(130%) rotate(18deg);
	opacity: 0;
}

.pn-swipe-card .pn-lot-row__link {
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	display: grid;
	grid-template-rows: minmax(0, 66%) minmax(0, 34%);
	gap: 0;
	padding: 0;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #d9d9d9;
	box-shadow: none;
	pointer-events: none;
}

.pn-swipe-card .pn-lot-row__thumb {
	width: 100%;
	height: 100%;
	border-radius: 12px 12px 0 0;
	border: 0;
	background: #f4f4f4;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.pn-swipe-card .pn-lot-row__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pn-swipe-card .pn-lot-row__body {
	padding: 12px;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 6px;
	min-height: 0;
	overflow: hidden;
}

.pn-swipe-card .pn-lot-row__estimate {
	font-size: 15px;
}

.pn-swipe-desc {
	margin: 0;
	font-size: 11px;
	color: var(--pn-muted);
	line-height: 1.4;
	text-transform: capitalize;
}

.pn-swipe-card .pn-lot-row__top {
	display: none;
}

.pn-swipe-card .pn-lot-row__title {
	font-size: 16px;
	line-height: 1.3;
	margin-bottom: 0;
}

.pn-swipe-card .pn-lot-row__estimate-label {
	display: none;
}

.pn-swipe-card .pn-lot-row__cta {
	display: none;
}

.pn-swipe-card .pn-lot-row__alert-bell {
	display: none;
}

.pn-swipe-global-actions {
	position: fixed;
	left: 50%;
	bottom: calc(14px + env(safe-area-inset-bottom));
	width: min(392px, calc(100vw - 28px));
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	z-index: 99999;
	pointer-events: auto;
}

.pn-swipe-global-actions .pn-btn {
	min-height: 34px;
	justify-content: center;
	pointer-events: auto;
	font-size: 12px;
}

.pn-swipe-deck.is-empty .pn-swipe-global-actions {
	opacity: 0.5;
}

.pn-swipe-empty {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-size: 14px;
	color: #fff;
	background: #000;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

body.pn-app {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
	padding-bottom: env(safe-area-inset-bottom);
}

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

@keyframes pn-route-enter-forward {
	from {
		transform: translate3d(100%, 0, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes pn-route-enter-back {
	from {
		transform: translate3d(-100%, 0, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes pn-route-leave-forward {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes pn-route-leave-back {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(100%, 0, 0);
	}
}

body.pn-route-enter-forward main.pn-main,
body.pn-route-enter-back main.pn-main {
	will-change: transform, opacity;
}

body.pn-route-enter-forward main.pn-main {
	animation: pn-route-enter-forward 300ms cubic-bezier(0.22, 0.82, 0.2, 1) both;
}

body.pn-route-enter-back main.pn-main {
	animation: pn-route-enter-back 300ms cubic-bezier(0.22, 0.82, 0.2, 1) both;
}

body.pn-route-leave-forward main.pn-main {
	animation: pn-route-leave-forward 240ms cubic-bezier(0.4, 0.0, 0.2, 1) both;
	pointer-events: none;
}

body.pn-route-leave-back main.pn-main {
	animation: pn-route-leave-back 240ms cubic-bezier(0.4, 0.0, 0.2, 1) both;
	pointer-events: none;
}

@keyframes pn-intro-slide-up {
	from {
		opacity: 0;
		transform: translate3d(0, 28px, 0) scale(0.985);
		filter: blur(5px);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		filter: blur(0);
	}
}

body.pn-intro-active .pn-site-header,
body.pn-intro-active .pn-feed-controls,
body.pn-intro-active .pn-page-title,
body.pn-intro-active .pn-page-intro,
body.pn-intro-active .pn-house-feed-block,
body.pn-intro-active .pn-lot-row,
body.pn-intro-active .pn-panel,
body.pn-intro-active .pn-ops-sidebar,
body.pn-intro-active .pn-about-slide__inner {
	animation: pn-intro-slide-up 640ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
	will-change: transform, opacity, filter;
}

body.pn-intro-active .pn-site-header {
	animation-delay: 40ms;
}

body.pn-intro-active .pn-feed-controls,
body.pn-intro-active .pn-page-title,
body.pn-intro-active .pn-ops-sidebar {
	animation-delay: 110ms;
}

body.pn-intro-active .pn-page-intro {
	animation-delay: 170ms;
}

body.pn-intro-active .pn-panel:nth-of-type(1),
body.pn-intro-active .pn-house-feed-block:nth-of-type(1),
body.pn-intro-active .pn-lot-row:nth-of-type(1) {
	animation-delay: 210ms;
}

body.pn-intro-active .pn-panel:nth-of-type(2),
body.pn-intro-active .pn-house-feed-block:nth-of-type(2),
body.pn-intro-active .pn-lot-row:nth-of-type(2) {
	animation-delay: 270ms;
}

body.pn-intro-active .pn-panel:nth-of-type(3),
body.pn-intro-active .pn-house-feed-block:nth-of-type(3),
body.pn-intro-active .pn-lot-row:nth-of-type(3) {
	animation-delay: 320ms;
}

body.pn-intro-active .pn-panel:nth-of-type(4),
body.pn-intro-active .pn-house-feed-block:nth-of-type(4),
body.pn-intro-active .pn-lot-row:nth-of-type(4) {
	animation-delay: 380ms;
}

body.pn-intro-active .pn-lot-row:nth-of-type(5) {
	animation-delay: 430ms;
}

body.pn-intro-active .pn-lot-row:nth-of-type(6) {
	animation-delay: 470ms;
}

@media (prefers-reduced-motion: reduce) {
	body {
		animation: none;
	}
	body.pn-intro-active .pn-site-header,
	body.pn-intro-active .pn-feed-controls,
	body.pn-intro-active .pn-page-title,
	body.pn-intro-active .pn-page-intro,
	body.pn-intro-active .pn-house-feed-block,
	body.pn-intro-active .pn-lot-row,
	body.pn-intro-active .pn-panel,
	body.pn-intro-active .pn-ops-sidebar,
	body.pn-intro-active .pn-about-slide__inner {
		animation: none;
		filter: none;
		transform: none;
	}
	body.pn-route-enter-forward main.pn-main,
	body.pn-route-enter-back main.pn-main,
	body.pn-route-leave-forward main.pn-main,
	body.pn-route-leave-back main.pn-main {
		animation: none;
		pointer-events: auto;
	}
	.pn-lot-overlay__backdrop,
	.pn-lot-overlay__panel {
		transition: none;
	}
	.pn-lot-overlay__frame,
	.pn-lot-overlay.is-ready .pn-lot-overlay__skeleton {
		transition: none;
	}
	.pn-lot-overlay__skeleton {
		animation: none;
	}
}

.pn-archive-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--pn-border);
	border-radius: var(--pn-radius);
	overflow: hidden;
	background: var(--pn-surface);
}

.pn-archive-list li {
	border-bottom: 1px solid var(--pn-border);
	padding: 14px 18px;
	margin: 0;
}

.pn-archive-list li:last-child {
	border-bottom: none;
}

.pn-archive-list li:hover {
	background: var(--pn-surface-subtle);
}

.pn-archive-list a {
	font-weight: 500;
	color: var(--pn-text);
	text-decoration: none;
}

.pn-archive-list a:hover {
	text-decoration: underline;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

body.pn-tool .entry-content {
	color: var(--pn-text);
	font-size: 15px;
	line-height: 1.55;
	max-width: 65ch;
}

.pn-domain {
	font-family: var(--pn-font);
	letter-spacing: 0.02em;
	color: var(--pn-muted);
	font-size: 13px;
}

@media (min-width: 640px) {
	.pn-card-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 14px;
		border: none;
		border-radius: 0;
		overflow: visible;
		background: transparent;
	}

	.pn-card {
		border: 1px solid var(--pn-border);
		border-radius: var(--pn-radius);
		border-bottom: 1px solid var(--pn-border);
	}

	.pn-card:hover {
		border-color: #000000;
	}
}

@media (min-width: 1024px) {
	.pn-wrap {
		padding: 0 clamp(24px, 3vw, 40px);
	}

	main.pn-main {
		padding-top: 36px;
	}
}

@media (min-width: 1180px) {
	.pn-page-title {
		font-size: 30px;
	}

	.pn-page-intro {
		font-size: 17px;
		max-width: 44rem;
	}

	.pn-unsold-feed {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
	}

	.pn-house-feed-block {
		height: fit-content;
	}
}

@media (max-width: 767px) {
	.pn-wrap {
		padding: 0 14px;
	}

	.pn-site-header .pn-wrap {
		padding-top: max(10px, env(safe-area-inset-top));
		padding-bottom: 10px;
	}

	main.pn-main {
		padding-top: 18px;
		padding-bottom: calc(34px + env(safe-area-inset-bottom));
	}

	.pn-page-title {
		font-size: 24px;
	}

	.pn-panel {
		padding: 18px 14px;
		border-radius: 12px;
	}

	.pn-lot-row__link {
		padding: 12px;
		gap: 10px;
	}

	.pn-lot-row__thumb {
		width: 84px;
		height: 84px;
	}

	.pn-offer-range-value {
		min-width: 5.8rem;
		max-width: 50%;
	}
}

/* —— Grouped unsold feed + infinite scroll —— */
.pn-unsold-feed {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.pn-search-wrap {
	margin: 0;
	width: 100%;
}

.pn-search-input {
	width: 100%;
	max-width: none;
	min-height: 40px;
	padding: 9px 12px;
	border-radius: 12px;
	border: 1px solid var(--pn-border);
	background: #fff;
	color: var(--pn-text);
	font-family: var(--pn-font);
	font-size: 13px;
	line-height: 1;
}

.pn-category-filters {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	gap: 8px;
	margin: 0;
	overflow-x: auto;
	padding-bottom: 2px;
	padding-right: 22px;
	scrollbar-width: none;
	-ms-overflow-style: none;
	mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 26px), transparent 100%);
	-webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 26px), transparent 100%);
}

.pn-category-filters::-webkit-scrollbar {
	display: none;
}

.pn-house-filters {
	margin-top: 0;
}

.pn-category-filter {
	appearance: none;
	border: 1px solid var(--pn-border);
	background: #fff;
	color: var(--pn-text);
	font-family: var(--pn-font);
	font-size: 11px;
	line-height: 1;
	padding: 8px 12px;
	border-radius: 999px;
	cursor: pointer;
	white-space: nowrap;
	flex: 0 0 auto;
	min-height: 32px;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.pn-category-filter:hover {
	border-color: var(--pn-border-strong);
	transform: translateY(-1px);
}

.pn-category-filter.is-active {
	background: var(--pn-cat-active-bg, #16a34a);
	border-color: var(--pn-cat-active-border, #16a34a);
	color: var(--pn-cat-active-text, #fff);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.pn-feed-controls {
	position: sticky;
	top: calc(env(safe-area-inset-top) + 6px);
	z-index: 70;
	width: 100%;
	background: transparent;
	padding: 8px 0 10px;
	margin: 0 0 6px;
	border-bottom: none;
}

.pn-feed-controls-top {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pn-feed-controls-toggle {
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex: 1 1 auto;
	min-height: 40px;
	padding: 8px 54px 8px 14px;
	border-radius: 999px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	font-family: var(--pn-font);
	font-size: 12px;
	line-height: 1.2;
	cursor: pointer;
	text-align: center;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
	position: relative;
}

.pn-feed-controls-toggle:hover {
	border-color: #fff;
}

.pn-feed-controls-toggle__icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	pointer-events: none;
}

.pn-feed-controls-toggle__label {
	display: block;
	font-weight: 600;
	white-space: normal;
}

.pn-feed-controls-toggle__meta {
	position: absolute;
	right: 28px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.78);
	pointer-events: none;
}

.pn-feed-controls-toggle__chevron {
	position: absolute;
	right: 13px;
	top: 50%;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid rgba(255, 255, 255, 0.82);
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.82);
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.18s ease;
}

.pn-feed-controls-top .pn-feed-account-trigger {
	flex: 0 0 auto;
	align-self: center;
	min-height: 40px;
	height: 40px;
	margin: 0;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.pn-feed-account-trigger {
	appearance: none;
	flex: 0 0 auto;
	min-height: 40px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	font-family: var(--pn-font);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	max-width: 150px;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-tap-highlight-color: transparent;
}

.pn-feed-account-trigger:hover,
.pn-feed-account-trigger:focus-visible {
	background: #000;
	border-color: #000;
	color: #fff;
	opacity: 0.88;
}

.pn-feed-controls-body {
	margin-top: 10px;
	padding: 12px;
	border: 1px solid #fff;
	border-radius: 14px;
	background: #000;
	color: #fff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
	max-height: min(62vh, 540px);
	overflow-y: auto;
	display: grid;
	gap: 12px;
	opacity: 0;
	transform: translate3d(0, -16px, 0) scale(0.982);
	transform-origin: top center;
	filter: blur(1.5px);
	max-height: 0;
	overflow: hidden;
	pointer-events: none;
	transition:
		opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 340ms cubic-bezier(0.16, 1, 0.3, 1),
		max-height 340ms cubic-bezier(0.16, 1, 0.3, 1),
		filter 280ms ease-out;
	will-change: opacity, transform, max-height, filter;
}

.pn-feed-controls-body[hidden] {
	display: none !important;
}

.pn-feed-controls.is-collapsed {
	padding-bottom: 6px;
}

.pn-feed-controls.is-expanded .pn-feed-controls-toggle__chevron {
	transform: rotate(-135deg) translate(-1px, -1px);
}

.pn-feed-controls.is-expanded .pn-feed-controls-body {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	filter: blur(0);
	max-height: min(62vh, 540px);
	overflow-y: auto;
	pointer-events: auto;
	transition:
		opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
		max-height 360ms cubic-bezier(0.16, 1, 0.3, 1),
		filter 300ms ease-out;
}

.pn-feed-controls.is-collapsed .pn-feed-controls-body {
	transition:
		opacity 260ms cubic-bezier(0.32, 0, 0.2, 1),
		transform 420ms cubic-bezier(0.32, 0, 0.2, 1),
		max-height 420ms cubic-bezier(0.32, 0, 0.2, 1),
		filter 340ms cubic-bezier(0.32, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
	.pn-feed-controls-body {
		transition: none !important;
	}
}

.pn-filter-group {
	display: grid;
	gap: 8px;
}

.pn-filter-group__title {
	margin: 0;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.72);
}

.pn-feed-controls-body .pn-search-input {
	border-color: rgba(255, 255, 255, 0.36);
	background: #000;
	color: #fff;
}

.pn-feed-controls-body .pn-search-input::placeholder {
	color: rgba(255, 255, 255, 0.62);
}

.pn-sort-select {
	width: 100%;
	min-height: 38px;
	padding: 8px 34px 8px 12px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: #000;
	color: #fff;
	font-family: var(--pn-font);
	font-size: 12px;
	line-height: 1.2;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.8' d='M1 1.5L6 6l5-4.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	cursor: pointer;
}

.pn-feed-controls-body .pn-category-filter {
	border-color: rgba(255, 255, 255, 0.45);
	background: #000;
	color: #fff;
}

.pn-feed-controls-body .pn-category-filter:hover {
	border-color: #fff;
	transform: none;
}

.pn-feed-controls-body .pn-category-filter.is-active {
	background: var(--pn-cat-active-bg, #16a34a);
	border-color: var(--pn-cat-active-border, #16a34a);
	color: var(--pn-cat-active-text, #fff);
}

.pn-access-summary {
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 10px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.06);
	display: grid;
	gap: 4px;
}

.pn-access-summary__line {
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
	color: #fff;
}

body.pn-account-modal-open {
	overflow: hidden;
}

body.pn-offer-preview-open {
	overflow: hidden;
}

body.pn-offer-auth-open {
	overflow: hidden;
}

body.pn-lot-overlay-open {
	overflow: hidden;
}

.pn-lot-overlay {
	position: fixed;
	inset: 0;
	z-index: 215;
	pointer-events: none;
}

.pn-lot-overlay__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(0, 0, 0, 0.26);
	opacity: 0;
	transition: opacity 220ms ease;
}

.pn-lot-overlay__panel {
	position: absolute;
	inset: 0;
	background: #fff;
	transform: translate3d(100%, 0, 0);
	transition: transform 300ms cubic-bezier(0.22, 0.82, 0.2, 1);
	box-shadow: -24px 0 40px rgba(0, 0, 0, 0.18);
}

.pn-lot-overlay__frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #fff;
	opacity: 0;
	transition: opacity 180ms ease;
}

.pn-lot-overlay__skeleton {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #f4f4f4 10%, #ececec 28%, #f4f4f4 45%);
	background-size: 220% 100%;
	animation: pn-overlay-skeleton-shimmer 1.2s linear infinite;
	pointer-events: none;
}

@keyframes pn-overlay-skeleton-shimmer {
	0% {
		background-position: 220% 0;
	}
	100% {
		background-position: -220% 0;
	}
}

.pn-lot-overlay.is-open {
	pointer-events: auto;
}

.pn-lot-overlay.is-loading {
	pointer-events: auto;
}

.pn-lot-overlay.is-loading .pn-lot-overlay__backdrop {
	opacity: 0.4;
}

.pn-lot-overlay.is-open .pn-lot-overlay__backdrop {
	opacity: 1;
}

.pn-lot-overlay.is-open .pn-lot-overlay__panel {
	transform: translate3d(0, 0, 0);
}

.pn-lot-overlay.is-ready .pn-lot-overlay__frame {
	opacity: 1;
}

.pn-lot-overlay.is-ready .pn-lot-overlay__skeleton {
	opacity: 0;
	visibility: hidden;
	transition: opacity 140ms ease, visibility 140ms ease;
}

.pn-account-modal {
	position: fixed;
	inset: 0;
	z-index: 230;
	display: grid;
	place-items: center;
	padding: 16px;
}

.pn-account-modal[hidden] {
	display: none !important;
}

.pn-account-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.56);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.pn-account-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(460px, 100%);
	background: #fff;
	border: 1px solid var(--pn-border);
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.pn-account-modal__dialog--guest {
	width: min(420px, 100%);
	padding: 18px 16px 16px;
}

.pn-account-modal__close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid var(--pn-border);
	background: #fff;
	cursor: pointer;
}

.pn-account-modal__dialog h3 {
	margin: 0 0 12px;
	font-size: 18px;
}

.pn-account-modal__meta {
	display: grid;
	gap: 6px;
	margin-bottom: 12px;
	padding: 10px 12px;
	border: 1px solid var(--pn-border);
	border-radius: 10px;
	background: #fafafa;
}

.pn-account-modal__line {
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
}

.pn-account-modal__line--lead {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
}

.pn-account-modal__actions {
	display: grid;
	gap: 8px;
	margin-top: 12px;
}

.pn-account-modal__actions .pn-btn {
	margin-top: 0;
	min-height: 42px;
	padding: 0 14px;
	font-size: 13px;
	width: 100%;
	justify-content: flex-start;
	border-radius: 10px;
}

.pn-account-modal__dialog--guest .pn-account-modal__actions {
	margin-top: 14px;
}

.pn-alerts-panel {
	margin-top: 12px;
	padding: 10px 12px;
	border: 1px solid var(--pn-border);
	border-radius: 10px;
	background: #fafafa;
	display: grid;
	gap: 10px;
}

.pn-alerts-page {
	display: grid;
	gap: 12px;
	max-width: 860px;
	margin: 0 auto;
	padding-bottom: 40px;
}

.pn-alerts-page__head .pn-page-title {
	margin-bottom: 6px;
}

.pn-alerts-toggle--page {
	padding: 10px 12px;
	border: 1px solid var(--pn-border);
	border-radius: 10px;
	background: #fafafa;
}

.pn-alerts-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}

.pn-alerts-group {
	display: grid;
	gap: 6px;
}

.pn-alerts-group__title {
	margin: 0;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--pn-muted);
}

.pn-alerts-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pn-alerts-rule-form {
	display: grid;
	gap: 8px;
}

.pn-alerts-rule-form .pn-search-input {
	min-height: 36px;
	font-size: 12px;
}

.pn-alerts-rule-form .pn-btn {
	margin-top: 0;
	min-height: 36px;
	padding: 0 12px;
	font-size: 12px;
	justify-content: center;
}

.pn-alerts-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	border: 1px solid var(--pn-border);
	border-radius: 999px;
	font-size: 12px;
	background: #fff;
}

.pn-alerts-chip button {
	border: 0;
	background: transparent;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	color: var(--pn-muted);
}

.pn-alerts-empty {
	font-size: 12px;
	color: var(--pn-muted);
}

.pn-ops-wrap {
	display: grid;
	gap: 16px;
}

.pn-ops-main {
	display: grid;
	gap: 16px;
}

.pn-ops-sidebar {
	border: 1px solid var(--pn-border);
	border-radius: 12px;
	padding: 12px;
	background: #fff;
	height: fit-content;
}

.pn-ops-sidebar__title {
	margin: 0 0 10px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pn-muted);
}

.pn-ops-nav {
	display: grid;
	gap: 6px;
}

.pn-ops-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 10px;
	border: 1px solid var(--pn-border);
	border-radius: 8px;
	text-decoration: none;
	color: var(--pn-text);
	font-size: 13px;
}

.pn-ops-nav a:hover {
	border-color: #000;
}

.pn-ops-head {
	display: grid;
	gap: 8px;
}

.pn-ops-chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

.pn-ops-chip {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 10px;
	border: 1px solid var(--pn-border);
	border-radius: 999px;
	font-size: 12px;
	color: var(--pn-text);
	background: #fff;
}

.pn-ops-kpi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
}

.pn-ops-kpi {
	border: 1px solid var(--pn-border);
	border-radius: 10px;
	padding: 10px;
	background: #fff;
	display: grid;
	gap: 4px;
}

.pn-ops-kpi strong {
	font-size: 22px;
	line-height: 1.05;
}

.pn-ops-kpi span {
	font-size: 12px;
	color: var(--pn-muted);
}

.pn-ops-table-wrap {
	overflow: auto;
}

.pn-ops-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 760px;
}

.pn-ops-table th,
.pn-ops-table td {
	padding: 9px 8px;
	border-bottom: 1px solid var(--pn-border);
	text-align: left;
	font-size: 13px;
	vertical-align: top;
}

.pn-ops-table th {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--pn-muted);
}

.pn-ops-status {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0 8px;
	border: 1px solid var(--pn-border);
	border-radius: 999px;
	font-size: 11px;
}

.pn-ops-status--ok {
	border-color: #0a7a29;
	color: #0a7a29;
}

@media (min-width: 1100px) {
	.pn-ops-wrap {
		grid-template-columns: 220px minmax(0, 1fr);
		align-items: start;
	}
	.pn-ops-sidebar {
		position: sticky;
		top: calc(env(safe-area-inset-top) + 70px);
	}
}

.pn-house-feed-block {
	border: 1px solid var(--pn-border);
	border-radius: var(--pn-radius);
	background: var(--pn-surface);
	overflow: hidden;
}

.pn-house-feed-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	padding: 14px;
	border-bottom: 1px solid var(--pn-border);
	background: var(--pn-bg);
}

.pn-house-feed-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.pn-house-feed-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid var(--pn-border);
	background: var(--pn-surface-subtle);
	overflow: hidden;
	flex: 0 0 auto;
}

.pn-house-feed-logo img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.pn-house-feed-logo-fallback {
	font-size: 13px;
	font-weight: 700;
	color: var(--pn-muted);
}

.pn-house-feed-brand-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 2px;
}

.pn-house-feed-title {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-transform: none;
	color: var(--pn-text);
	line-height: 1.25;
}

.pn-house-feed-domain {
	font-size: 11px;
	color: var(--pn-muted);
	letter-spacing: 0.02em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: min(60vw, 320px);
}

.pn-house-feed-domain a {
	color: inherit;
	text-decoration: none;
}

.pn-house-feed-domain a:hover {
	text-decoration: underline;
}

.pn-house-feed-count {
	font-size: 11px;
	color: var(--pn-muted);
	font-weight: 500;
	border: 1px solid var(--pn-border);
	border-radius: 999px;
	padding: 4px 8px;
	line-height: 1;
}

.pn-sale-feed-block {
	padding: 8px 12px 12px;
	border-bottom: 1px solid var(--pn-border);
	background: var(--pn-surface-subtle);
}

.pn-sale-feed-block:last-child {
	border-bottom: none;
}

.pn-sale-feed-title {
	margin: 0;
	padding: 4px 2px 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--pn-muted);
	text-transform: none;
	letter-spacing: 0.01em;
	border-bottom: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.pn-sale-feed-label {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pn-sale-feed-date {
	margin-left: 0;
	font-weight: 500;
	color: var(--pn-muted);
	text-transform: none;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.pn-lot-stack {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pn-lot-row {
	margin: 0;
	border-top: none;
}

.pn-lot-row__inner {
	position: relative;
}

.pn-lot-row:first-of-type {
	border-top: none;
}

.pn-lot-row--enter {
	animation: pn-lot-fade-in 300ms ease both;
}

@keyframes pn-lot-fade-in {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pn-lot-row__link {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 12px;
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
	border: 1px solid var(--pn-border);
	border-radius: 8px;
	background: var(--pn-bg);
	content-visibility: auto;
	contain-intrinsic-size: 160px;
	transition: border-color 220ms ease, transform 220ms ease, background-color 220ms ease;
	cursor: pointer;
	padding-right: 12px;
}

@media (prefers-reduced-motion: reduce) {
	.pn-lot-row--enter {
		animation: none;
	}
}

.pn-lot-row__thumb {
	flex: 0 0 auto;
	width: 112px;
	height: 112px;
	border-radius: var(--pn-radius-sm);
	overflow: hidden;
	background: var(--pn-surface-subtle);
	border: 1px solid var(--pn-border);
}

.pn-lot-row__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pn-lot-row__img {
	filter: blur(10px);
	transform: scale(1.03);
	opacity: 0.72;
	transition: filter 260ms ease, transform 260ms ease, opacity 220ms ease;
}

.pn-lot-row__img.is-ready {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.pn-lot-row__img {
		transition: none;
	}
}

.pn-lot-row__body {
	flex: 1;
	min-width: 0;
}

.pn-lot-row__link:hover {
	border-color: #000;
	background: #fcfcfc;
}

.pn-lot-row__top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

.pn-lot-row__top .pn-badge--unsold {
	padding: 1px 5px;
	font-size: 8px;
	letter-spacing: 0.03em;
}

.pn-lot-row__lotno {
	font-size: 12px;
	color: var(--pn-muted);
	font-weight: 500;
}

.pn-lot-row__title {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.02em;
	color: var(--pn-text);
}

.pn-lot-row__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
}

.pn-lot-row__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	min-width: 0;
}

.pn-lot-row__estimate {
	margin: 0;
	font-size: 14px;
	color: var(--pn-text);
	font-variant-numeric: tabular-nums;
	opacity: 0.92;
}

.pn-lot-row__estimate-label {
	display: block;
	font-size: 10px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pn-muted);
	margin-bottom: 3px;
}

.pn-lot-row__roi {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	padding: 0 7px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 999px;
	font-size: 10px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 600;
	color: #14532d;
	background: #ecfdf3;
	white-space: nowrap;
}

.pn-lot-row__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid #000;
	border-radius: 999px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	color: #fff;
	background: #000;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
	white-space: nowrap;
	transform: translateZ(0) scale(1);
	transform-origin: 50% 50%;
	transition: transform 220ms ease-in-out, background-color 220ms ease-in-out, opacity 220ms ease-in-out;
}

.pn-lot-row__cta-text {
	display: inline-block;
	line-height: 1;
}

.pn-lot-row__cta-icon {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	transform: translateX(0);
	transition: transform 220ms ease-in-out, opacity 220ms ease-in-out;
	opacity: 0.88;
}

.pn-lot-row__link:hover .pn-lot-row__cta,
.pn-lot-row__link:focus-visible .pn-lot-row__cta {
	transform: scale(1.04);
	background: #111;
}

.pn-lot-row__link:hover .pn-lot-row__cta-icon,
.pn-lot-row__link:focus-visible .pn-lot-row__cta-icon {
	transform: translateX(2px);
	opacity: 1;
}

.pn-lot-row__link:active .pn-lot-row__cta {
	transform: scale(0.98);
}

.pn-lot-row__alert-bell {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 1px solid var(--pn-border);
	background: #fff;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pn-lot-row__alert-bell:hover {
	transform: translateY(-1px);
	border-color: #000;
}

.pn-lot-row__alert-bell.is-active {
	background: #f0fdf4;
	border-color: #16a34a;
}

.pn-lot-row[hidden],
.pn-sale-feed-block[hidden],
.pn-house-feed-block[hidden] {
	display: none !important;
}

.pn-unsold-feed--global .pn-lot-row {
	display: block;
}

.pn-unsold-sentinel {
	text-align: center;
	padding: 28px 16px 48px;
	font-size: 12px;
	color: var(--pn-muted);
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pn-unsold-sentinel__loader {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	border: 1.5px solid #d0d0d0;
	border-top-color: #000;
	animation: pn-loader-spin 0.7s linear infinite;
}

.pn-unsold-sentinel__text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

.pn-unsold-sentinel.is-loading .pn-unsold-sentinel__text {
	opacity: 0.45;
}

.pn-unsold-sentinel.is-error .pn-unsold-sentinel__text::after {
	content: " — error";
	color: var(--pn-text);
}

.pn-unsold-sentinel.is-error .pn-unsold-sentinel__loader {
	animation: none;
	border-color: #b91c1c;
	border-top-color: #b91c1c;
}

.pn-unsold-sentinel.is-error .pn-unsold-sentinel__text {
	clip: auto;
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	white-space: normal;
	margin-left: 8px;
	color: #b91c1c;
}

@keyframes pn-loader-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.pn-empty-feed {
	border: 1px dashed var(--pn-border);
	border-radius: var(--pn-radius);
	padding: 28px 20px;
	background: var(--pn-surface-subtle);
}

.pn-empty-feed__hero {
	text-align: center;
	max-width: 42em;
	margin: 0 auto 24px;
}

.pn-empty-feed__hero strong {
	display: block;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--pn-text);
}

.pn-empty-feed__hero p {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--pn-muted);
}

.pn-empty-feed .pn-btn {
	margin-top: 8px;
	margin-inline: 6px;
}

.pn-skeleton-wrap {
	display: grid;
	gap: 12px;
	margin: 8px 0 22px;
}

.pn-skeleton-wrap[hidden] {
	display: none !important;
}

.pn-skeleton-block {
	height: 112px;
	border-radius: 10px;
	background: linear-gradient(90deg, #f2f2f2 0%, #e7e7e7 50%, #f2f2f2 100%);
	background-size: 200% 100%;
	animation: pn-skeleton-shimmer 1.2s linear infinite;
}

.pn-skeleton-block:nth-child(3n) {
	height: 124px;
}

.pn-skeleton-block:nth-child(4n) {
	height: 98px;
}

@media (min-width: 1180px) {
	.pn-skeleton-wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@keyframes pn-skeleton-shimmer {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.pn-empty-feed__hint {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pn-muted);
	margin: 0 0 10px;
	font-weight: 600;
}

.pn-house-pill-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.pn-house-pill {
	display: inline-block;
	padding: 6px 12px;
	border: 1px solid var(--pn-border);
	border-radius: 999px;
	font-size: 12px;
	color: var(--pn-text);
	background: var(--pn-bg);
}

/* Paywall onboarding */
.pn-onboard-hero {
	background: #000;
	color: #fff;
	border-color: #000;
}

.pn-onboard-title {
	margin: 0 0 10px;
	font-size: clamp(24px, 4vw, 34px);
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.pn-step-kicker {
	margin: 0 0 10px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	font-weight: 600;
	opacity: 0.82;
}

.pn-onboard-hero .pn-muted-text {
	color: rgba(255, 255, 255, 0.78);
}

.pn-access-pill {
	display: inline-flex;
	margin: 0;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 12px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
}

.pn-onboard-section-title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	text-transform: none !important;
	color: var(--pn-text) !important;
}

.pn-price-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 12px;
	margin-top: 4px;
}

.pn-price-card {
	border: 1px solid var(--pn-border);
	border-radius: 14px;
	padding: 16px 14px;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 170px;
	justify-content: center;
	text-align: center;
	transition: border-color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

.pn-price-card:hover {
	border-color: #000;
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.pn-price-card--featured {
	border-color: #000;
	background: #000;
	color: #fff;
}

.pn-price-card__label {
	margin: 0 0 6px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pn-muted);
}

.pn-price-card--featured .pn-price-card__label {
	color: rgba(255, 255, 255, 0.72);
}

.pn-price-card h3 {
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.pn-price-card__price {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
}

.pn-price-card__sub {
	margin: 4px 0 0;
	color: var(--pn-muted);
	font-size: 12px;
	line-height: 1.4;
}

.pn-price-card--featured .pn-price-card__sub {
	color: rgba(255, 255, 255, 0.84);
}

.pn-step-list {
	margin: 0;
	padding-left: 20px;
	display: grid;
	gap: 8px;
	color: var(--pn-text);
}

.pn-step-list li {
	line-height: 1.45;
}

.pn-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* Send-offer paywall modal */
body.pn-paywall-open {
	overflow: hidden;
}

.pn-paywall-modal {
	position: fixed;
	inset: 0;
	z-index: 220;
	display: grid;
	place-items: center;
	padding: 18px;
}

.pn-paywall-modal[hidden] {
	display: none !important;
}

.pn-paywall-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.56);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.pn-paywall-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	max-height: min(90vh, 740px);
	overflow: auto;
	border: 1px solid var(--pn-border);
	border-radius: 14px;
	background: #fff;
	padding: 20px 16px 16px;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
	display: grid;
	gap: 14px;
}

.pn-paywall-modal__close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 32px;
	height: 32px;
	border: 1px solid var(--pn-border);
	border-radius: 999px;
	background: #fff;
	color: var(--pn-text);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.pn-paywall-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 6px;
}

.pn-paywall-modal__head {
	display: grid;
	gap: 6px;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--pn-border);
}

.pn-paywall-modal__head .pn-muted-text {
	margin: 0;
}

.pn-paywall-modal__email-block {
	display: grid;
	gap: 6px;
}

.pn-paywall-email {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid var(--pn-border);
	border-radius: 10px;
	font-family: var(--pn-font);
	font-size: 14px;
}

.pn-paywall-plan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
}

.pn-paywall-steps {
	margin: 0 0 8px;
	font-size: 12px;
	color: var(--pn-muted);
}

.pn-paywall-plan {
	appearance: none;
	width: 100%;
	border: 1px solid var(--pn-border);
	border-radius: 12px;
	background: #fff;
	text-align: left;
	padding: 12px;
	display: grid;
	gap: 6px;
	cursor: pointer;
	font-family: var(--pn-font);
	align-content: start;
	min-height: 130px;
}

.pn-paywall-plan:hover {
	border-color: #000;
}

.pn-paywall-plan.is-selected {
	border-color: #000;
	background: #f7f7f7;
	box-shadow: inset 0 0 0 1px #000;
}

.pn-paywall-plan__name {
	font-size: 15px;
	font-weight: 600;
}

.pn-paywall-plan__price {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.pn-paywall-plan__desc {
	font-size: 12px;
	color: var(--pn-muted);
}

.pn-paywall-status {
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
	color: #14532d;
}

.pn-paywall-status.is-error {
	color: #b91c1c;
}

.pn-paywall-modal__foot {
	display: grid;
	gap: 6px;
	padding-top: 8px;
	border-top: 1px solid var(--pn-border);
}

.pn-paywall-cta {
	width: 100%;
	justify-content: center;
	min-height: 52px;
	display: grid;
	gap: 2px;
	text-align: center;
	border-radius: 12px;
}

.pn-paywall-cta .pn-paywall-cta__label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.1;
}

.pn-paywall-cta .pn-paywall-cta__meta {
	display: block;
	font-size: 11px;
	line-height: 1.1;
	letter-spacing: 0.02em;
	opacity: 0.82;
}

.pn-paywall-cta:disabled {
	opacity: 0.52;
	cursor: not-allowed;
}

.pn-paywall-modal__foot .pn-field-hint {
	margin: 0;
}

.pn-offer-preview-modal {
	position: fixed;
	inset: 0;
	z-index: 240;
	display: grid;
	place-items: center;
	padding: 16px;
}

.pn-offer-preview-modal[hidden] {
	display: none !important;
}

.pn-offer-preview-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.56);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.pn-offer-preview-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(640px, 100%);
	max-height: min(90vh, 760px);
	overflow: auto;
	border: 1px solid var(--pn-border);
	border-radius: 12px;
	background: #fff;
	padding: 16px;
	display: grid;
	gap: 10px;
}

.pn-offer-preview-modal__dialog h3 {
	margin: 0;
	font-size: 18px;
}

.pn-offer-preview-modal__close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid var(--pn-border);
	background: #fff;
	cursor: pointer;
}

.pn-offer-preview-modal__dialog textarea {
	width: 100%;
	min-height: 210px;
	padding: 10px 12px;
	border: 1px solid var(--pn-border);
	border-radius: 10px;
	font-family: var(--pn-font);
	font-size: 13px;
	line-height: 1.45;
	resize: vertical;
}

.pn-offer-preview-modal__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.pn-offer-preview-modal__actions .pn-btn {
	margin-top: 0;
}

.pn-offer-auth-modal {
	position: fixed;
	inset: 0;
	z-index: 241;
	display: grid;
	place-items: center;
	padding: 16px;
}

.pn-offer-auth-modal[hidden] {
	display: none !important;
}

.pn-offer-auth-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.pn-offer-auth-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(520px, 100%);
	max-height: min(88vh, 720px);
	overflow: auto;
	border: 1px solid var(--pn-border);
	border-radius: 12px;
	background: #fff;
	padding: 16px;
	display: grid;
	gap: 10px;
}

.pn-offer-auth-modal__close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid var(--pn-border);
	background: #fff;
	cursor: pointer;
}

.pn-offer-auth-modal__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.pn-offer-auth-modal__actions--guest {
	grid-template-columns: 1fr;
}

.pn-offer-auth-modal__status {
	margin: 0;
	min-height: 18px;
	font-size: 12px;
	color: #2d4f7c;
}

.pn-offer-auth-modal__status.is-error {
	color: #8a2531;
}

.pn-about-slide {
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.pn-about-slide::before,
.pn-about-slide::after {
	content: none;
}

.pn-about-slide__inner {
	position: relative;
	z-index: 2;
}

.pn-about-slide__inner {
	display: grid;
	gap: 14px;
	text-align: center;
	justify-items: center;
	opacity: 1;
	transform: none;
	transition: none;
	will-change: auto;
}

.pn-about-slide h1,
.pn-about-slide h2,
.pn-about-slide p,
.pn-about-slide__eyebrow {
	text-align: center;
}

.pn-about-slide h1,
.pn-about-slide h2,
.pn-about-slide p {
	width: min(72%, 700px);
	margin-left: auto;
	margin-right: auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

.pn-about-slide h1,
.pn-about-slide h2 {
	margin-bottom: 4px;
	font-size: clamp(30px, 4.8vw, 56px);
	line-height: 1.06;
	letter-spacing: -0.03em;
}

.pn-about-slide p {
	margin-top: 0;
	font-size: clamp(16px, 1.85vw, 24px);
	line-height: 1.28;
	letter-spacing: -0.01em;
	max-width: none;
}

.pn-about-slide--team.pn-about-slide--no-reveal .pn-about-slide__inner {
	transform: translate3d(0, -9vh, 0);
}

.pn-about-sentence {
	display: inline;
	opacity: var(--pn-sentence-reveal, 0);
	transform: none;
	transition: none;
	will-change: opacity;
}

.pn-about-slide--hero::before {
	width: 62vw;
	height: 62vw;
	left: -18vw;
	top: -20vh;
	border-radius: 999px;
	background: radial-gradient(circle at 35% 35%, rgba(16, 185, 129, 0.24), rgba(16, 185, 129, 0.02) 70%);
	animation: pn-about-orbit 12s ease-in-out infinite alternate;
}

.pn-about-slide--hero::after {
	right: -14vw;
	bottom: -16vh;
	width: 52vw;
	height: 52vw;
	border-radius: 999px;
	background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.02) 72%);
	animation: pn-about-pulse 8.5s ease-in-out infinite;
}

.pn-about-slide--coverage::before {
	inset: 18% auto auto 12%;
	width: 68vw;
	height: 68vw;
	border-radius: 999px;
	background:
		radial-gradient(circle at 22% 28%, rgba(99, 102, 241, 0.26) 0 6px, transparent 7px),
		radial-gradient(circle at 64% 22%, rgba(16, 185, 129, 0.24) 0 6px, transparent 7px),
		radial-gradient(circle at 42% 56%, rgba(234, 179, 8, 0.2) 0 8px, transparent 9px),
		radial-gradient(circle at 50% 50%, rgba(148, 163, 184, 0.12), rgba(148, 163, 184, 0.02) 70%);
	animation: pn-about-network 10s linear infinite;
}

.pn-about-slide--coverage::after {
	right: 8%;
	top: 24%;
	width: 32vw;
	height: 32vw;
	border-radius: 999px;
	background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.03) 68%);
	animation: pn-about-pulse 7.2s ease-in-out infinite;
}

.pn-about-slide--team::before {
	left: -10vw;
	top: 22%;
	width: 74vw;
	height: 48vh;
	border-radius: 28px;
	background:
		linear-gradient(90deg, rgba(16, 185, 129, 0.08), rgba(14, 165, 233, 0.08)),
		repeating-linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.03) 0 1px,
			transparent 1px 56px
		);
	animation: pn-about-scan 7s ease-in-out infinite;
}

.pn-about-slide--team::after {
	right: -8vw;
	bottom: 18%;
	width: 42vw;
	height: 42vw;
	border-radius: 999px;
	background: radial-gradient(circle at 35% 35%, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.02) 72%);
	animation: pn-about-orbit 11s ease-in-out infinite alternate-reverse;
}

.pn-about-slide--houses::before {
	left: 8%;
	top: 18%;
	width: 36vw;
	height: 36vw;
	border-radius: 50%;
	background:
		conic-gradient(
			from 0deg,
			rgba(16, 185, 129, 0.2),
			rgba(59, 130, 246, 0.16),
			rgba(234, 179, 8, 0.14),
			rgba(16, 185, 129, 0.2)
		);
	animation: pn-about-spin 14s linear infinite;
}

.pn-about-slide--houses::after {
	right: 10%;
	bottom: 14%;
	width: 42vw;
	height: 28vh;
	border-radius: 999px;
	background: linear-gradient(
		120deg,
		rgba(16, 185, 129, 0.08),
		rgba(99, 102, 241, 0.1),
		rgba(16, 185, 129, 0.08)
	);
	animation: pn-about-breathe 6.2s ease-in-out infinite;
}

@keyframes pn-about-orbit {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	100% {
		transform: translate3d(22px, -14px, 0) scale(1.08);
	}
}

@keyframes pn-about-pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.7;
	}
}

@keyframes pn-about-network {
	0% {
		transform: rotate(0deg) scale(1);
	}
	100% {
		transform: rotate(360deg) scale(1.04);
	}
}

@keyframes pn-about-scan {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(18px);
	}
}

@keyframes pn-about-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes pn-about-breathe {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-10px) scale(1.03);
	}
}

@media (prefers-reduced-motion: reduce) {
	.pn-about-slide::before,
	.pn-about-slide::after {
		animation: none !important;
	}
}

@media (max-width: 720px) {
	.pn-about-slide--team.pn-about-slide--no-reveal .pn-about-slide__inner {
		transform: translate3d(0, -6vh, 0);
	}
}

.pn-about-anchors {
	position: fixed;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: grid;
	gap: 12px;
	z-index: 120;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

body.pn-about-nav-reveal .pn-about-anchors,
.pn-about-anchors:focus-within,
.pn-about-anchors:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(-50%) translateX(0);
}

.pn-about-anchors__dot {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--pn-text);
}

.pn-about-anchors__dot::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(0, 0, 0, 0.4);
	transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.pn-about-anchors__dot.is-active::before,
.pn-about-anchors__dot:hover::before,
.pn-about-anchors__dot:focus-visible::before {
	background: #000;
	border-color: #000;
	transform: scale(1.18);
}

.pn-about-anchors__label {
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.62);
	white-space: nowrap;
}

.pn-about-anchors__dot.is-active .pn-about-anchors__label,
.pn-about-anchors__dot:hover .pn-about-anchors__label,
.pn-about-anchors__dot:focus-visible .pn-about-anchors__label {
	color: #000;
}

.pn-about-list {
	list-style-position: inside;
	padding-left: 0;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.pn-about-slide .pn-inline-actions {
	justify-content: center;
}

@media (max-width: 900px) {
	.pn-about-anchors {
		left: 10px;
	}
	.pn-about-anchors__label {
		display: none;
	}
}

@media (min-width: 640px) {
	.pn-price-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 980px) {
	.pn-price-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

#pn-feed-account-trigger.pn-feed-account-trigger {
	background: #000 !important;
	background-color: #000 !important;
	border-color: #000 !important;
	color: #fff !important;
	flex: 0 0 auto !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: 150px !important;
	height: 40px !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 8px 12px !important;
	border-radius: 999px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	align-self: center !important;
}

#pn-feed-account-trigger.pn-feed-account-trigger:hover,
#pn-feed-account-trigger.pn-feed-account-trigger:focus-visible {
	background: #000 !important;
	background-color: #000 !important;
	border-color: #000 !important;
	color: #fff !important;
	opacity: 0.88;
}
