/* ═══ Recent Sales landing — premium ═══════════════════════════════════════ */

.rs-page {
	--rs-cyan: #65e9ff;
	--rs-cyan-dim: rgba(101, 233, 255, 0.14);
	--rs-border: rgba(255, 255, 255, 0.08);
	--rs-text: rgba(236, 244, 255, 0.94);
	--rs-muted: rgba(176, 191, 224, 0.62);
	position: relative;
	isolation: isolate;
	min-height: calc(100vh - 80px);
	overflow: clip;
	color: var(--rs-text);
}

.rs-page__glow {
	position: absolute;
	inset: -20% auto auto 50%;
	width: min(900px, 90vw);
	height: 420px;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center, rgba(92, 180, 255, 0.18), transparent 68%);
	pointer-events: none;
	z-index: 0;
}

.rs-page__glow--secondary {
	inset: 40% auto auto 10%;
	width: 480px;
	height: 360px;
	transform: none;
	background: radial-gradient(ellipse at center, rgba(120, 90, 255, 0.1), transparent 70%);
}

.rs-shell {
	position: relative;
	z-index: 1;
	width: min(1080px, 100%);
	margin: 0 auto;
	padding: clamp(36px, 6vw, 72px) clamp(16px, 3vw, 28px) 80px;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.rs-hero {
	margin-bottom: clamp(28px, 4vw, 40px);
	max-width: 720px;
}

.rs-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgba(101, 233, 255, 0.2);
	background: rgba(101, 233, 255, 0.08);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(180, 240, 255, 0.9);
}

.rs-hero__eyebrow i,
.rs-hero__eyebrow svg {
	width: 14px;
	height: 14px;
}

.rs-hero__title {
	margin: 0;
	font-size: clamp(2.2rem, 1.4rem + 2.4vw, 3.5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.035em;
	background: linear-gradient(135deg, #ffffff 0%, #b8d4ff 55%, #8ee9ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.rs-hero__lead {
	margin: 16px 0 0;
	max-width: 36rem;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--rs-muted);
}

.rs-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
}

.rs-hero__pills li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	font-size: 0.78rem;
	font-weight: 700;
	color: rgba(210, 225, 255, 0.82);
}

.rs-hero__pills i,
.rs-hero__pills svg {
	width: 14px;
	height: 14px;
	color: var(--rs-cyan);
}

/* ─── Main panel ────────────────────────────────────────────────────────── */
.rs-panel {
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background:
		radial-gradient(ellipse 80% 60% at 0% 0%, rgba(101, 233, 255, 0.08), transparent 50%),
		radial-gradient(ellipse 60% 50% at 100% 100%, rgba(120, 90, 255, 0.06), transparent 50%),
		linear-gradient(180deg, rgba(14, 22, 42, 0.96), rgba(7, 12, 26, 0.98));
	box-shadow:
		0 32px 64px -36px rgba(0, 0, 0, 0.75),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: clamp(20px, 3vw, 28px);
	overflow: hidden;
}

.rs-panel__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rs-panel__eyebrow {
	margin: 0 0 4px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(140, 220, 255, 0.65);
}

.rs-panel__title {
	margin: 0;
	font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #f4f8ff;
}

.rs-steps {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.rs-steps__item {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	font-size: 0.72rem;
	font-weight: 800;
	color: rgba(190, 205, 230, 0.55);
	transition: all 0.2s ease;
}

.rs-steps__item.is-active,
.rs-steps__item.is-done {
	border-color: rgba(101, 233, 255, 0.4);
	background: rgba(101, 233, 255, 0.14);
	color: #dff8ff;
	box-shadow: 0 0 16px rgba(101, 233, 255, 0.2);
}

.rs-steps__item.is-done {
	background: rgba(101, 233, 255, 0.22);
}

.rs-steps__line {
	width: 18px;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}

/* Form layout */
.rs-form__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
	gap: 22px;
	align-items: stretch;
}

.rs-form__fields {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.rs-field {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
	padding: 16px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(0, 0, 0, 0.16);
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.rs-field.is-active {
	border-color: rgba(101, 233, 255, 0.22);
	background: rgba(101, 233, 255, 0.04);
	box-shadow: 0 0 0 1px rgba(101, 233, 255, 0.06);
}

.rs-field__meta {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.rs-field__index {
	flex: 0 0 auto;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	color: rgba(101, 233, 255, 0.75);
	font-variant-numeric: tabular-nums;
	padding-top: 2px;
}

.rs-field__label {
	display: block;
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	color: #f2f7ff;
	letter-spacing: -0.01em;
}

.rs-field__hint {
	margin: 4px 0 0;
	font-size: 0.8rem;
	line-height: 1.4;
	color: var(--rs-muted);
}

.rs-field__hint strong {
	color: rgba(210, 230, 255, 0.9);
	font-weight: 750;
}

.rs-field__control {
	position: relative;
	min-width: 0;
}

.rs-field__control--pattern {
	max-width: 220px;
}

.rs-input-shell {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 14px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.32);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.rs-input-shell:focus-within {
	border-color: rgba(101, 233, 255, 0.4);
	box-shadow: 0 0 0 3px rgba(101, 233, 255, 0.12);
}

.rs-input-shell > i,
.rs-input-shell > svg {
	width: 18px;
	height: 18px;
	color: rgba(160, 200, 230, 0.55);
	flex: 0 0 auto;
}

.rs-input-shell__hash {
	font-size: 1.1rem;
	font-weight: 800;
	color: rgba(101, 233, 255, 0.7);
	font-variant-numeric: tabular-nums;
}

.rs-input {
	flex: 1 1 auto;
	min-width: 0;
	height: 50px;
	border: 0;
	background: transparent;
	color: #f4f8ff;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 650;
	outline: none;
}

.rs-input--pattern {
	font-size: 1.15rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
}

.rs-input::placeholder {
	color: rgba(170, 190, 220, 0.4);
	font-weight: 550;
}

/* Dropdown */
.rs-dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	z-index: 30;
	max-height: 300px;
	overflow: auto;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(180deg, rgba(14, 22, 42, 0.99), rgba(8, 14, 28, 0.99));
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
	padding: 6px;
	-webkit-overflow-scrolling: touch;
}

.rs-dropdown[hidden] {
	display: none !important;
}

.rs-dropdown__empty {
	padding: 16px 12px;
	text-align: center;
	font-size: 0.85rem;
	color: var(--rs-muted);
}

.rs-option {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 10px 12px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: background 0.12s ease;
}

.rs-option:hover,
.rs-option.is-active {
	background: rgba(101, 233, 255, 0.1);
}

.rs-option__thumb {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	object-fit: contain;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.06);
	flex: 0 0 auto;
}

.rs-option__label {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	color: #f2f7ff;
}

.rs-option__meta {
	display: block;
	margin-top: 2px;
	font-size: 0.7rem;
	font-weight: 650;
	color: rgba(176, 191, 224, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Go button */
.rs-go {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 26px;
	border: 0;
	border-radius: 14px;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 850;
	letter-spacing: 0.01em;
	cursor: pointer;
	color: #031018;
	background: linear-gradient(135deg, #8ef3ff 0%, #5cd9f0 45%, #4aa8ff 100%);
	box-shadow:
		0 12px 32px -10px rgba(92, 217, 240, 0.7),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.rs-go i,
.rs-go svg {
	width: 18px;
	height: 18px;
}

.rs-go:hover:not(:disabled) {
	transform: translateY(-2px);
	filter: brightness(1.05);
	box-shadow:
		0 16px 36px -10px rgba(92, 217, 240, 0.8),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.rs-go:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	box-shadow: none;
	filter: grayscale(0.2);
}

.rs-status {
	min-height: 1.2em;
	margin: 0;
	font-size: 0.84rem;
	font-weight: 650;
	color: rgba(255, 150, 160, 0.95);
}

.rs-status:empty {
	display: none;
}

/* Preview card */
.rs-preview {
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at top, rgba(101, 233, 255, 0.08), transparent 55%),
		linear-gradient(180deg, rgba(10, 16, 34, 0.9), rgba(6, 10, 22, 0.95));
	min-height: 280px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.rs-preview__empty {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 28px 20px;
	text-align: center;
}

.rs-preview__empty-icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	border: 1px solid rgba(101, 233, 255, 0.18);
	background: rgba(101, 233, 255, 0.08);
	margin-bottom: 6px;
	color: var(--rs-cyan);
}

.rs-preview__empty-icon i,
.rs-preview__empty-icon svg {
	width: 22px;
	height: 22px;
}

.rs-preview__empty-title {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 800;
	color: #eef4ff;
}

.rs-preview__empty-text {
	margin: 0;
	max-width: 16rem;
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--rs-muted);
}

.rs-preview__body {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.rs-preview__body[hidden] {
	display: none !important;
}

.rs-preview__frame {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 160px;
	padding: 20px;
	background:
		radial-gradient(circle at 50% 40%, rgba(101, 233, 255, 0.1), transparent 60%),
		rgba(0, 0, 0, 0.22);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-preview__img {
	max-width: 100%;
	max-height: 140px;
	object-fit: contain;
	filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
}

.rs-preview__info {
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.rs-preview__kicker {
	margin: 0;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(140, 220, 255, 0.6);
}

.rs-preview__name {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	color: #f4f8ff;
}

.rs-preview__meta {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 650;
	color: var(--rs-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.rs-preview__pattern {
	margin: 8px 0 0;
	font-size: 0.88rem;
	color: rgba(210, 230, 255, 0.8);
}

.rs-preview__pattern strong {
	color: var(--rs-cyan);
	font-variant-numeric: tabular-nums;
	font-weight: 850;
}

.rs-preview__url {
	margin: 10px 0 0;
	padding: 8px 10px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.68rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	color: rgba(160, 200, 230, 0.7);
	word-break: break-all;
	line-height: 1.4;
}

/* ─── SEO / FAQ ─────────────────────────────────────────────────────────── */
.rs-seo {
	margin-top: clamp(40px, 6vw, 64px);
}

.rs-seo__intro {
	max-width: 40rem;
	margin-bottom: 24px;
}

.rs-seo__title {
	margin: 0 0 10px;
	font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.65rem);
	font-weight: 850;
	letter-spacing: -0.02em;
	color: #f2f7ff;
}

.rs-seo__lead {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--rs-muted);
}

.rs-seo__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 18px;
	align-items: start;
}

.rs-seo__block-title {
	margin: 0 0 12px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(160, 200, 230, 0.55);
}

.rs-faq {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rs-faq__item {
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(12, 18, 36, 0.7);
	overflow: hidden;
	transition: border-color 0.15s ease;
}

.rs-faq__item[open] {
	border-color: rgba(101, 233, 255, 0.18);
}

.rs-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	cursor: pointer;
	list-style: none;
	font-size: 0.92rem;
	font-weight: 750;
	color: #eef4ff;
	user-select: none;
}

.rs-faq__q::-webkit-details-marker {
	display: none;
}

.rs-faq__q i,
.rs-faq__q svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	color: rgba(160, 200, 230, 0.55);
	transition: transform 0.2s ease;
}

.rs-faq__item[open] .rs-faq__q i,
.rs-faq__item[open] .rs-faq__q svg {
	transform: rotate(180deg);
	color: var(--rs-cyan);
}

.rs-faq__a {
	padding: 0 16px 14px;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--rs-muted);
}

.rs-seo__aside {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.rs-seo__card {
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(12, 18, 36, 0.65);
	padding: 16px 18px;
}

.rs-seo__card p {
	margin: 0 0 10px;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--rs-muted);
}

.rs-seo__card p:last-child {
	margin-bottom: 0;
}

.rs-seo__url-note {
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.8rem !important;
}

.rs-seo__url-note code {
	color: var(--rs-cyan);
	font-weight: 700;
}

.rs-tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rs-tags li {
	padding: 6px 11px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.03);
	font-size: 0.74rem;
	font-weight: 650;
	color: rgba(190, 205, 230, 0.72);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.rs-form__grid {
		grid-template-columns: 1fr;
	}

	.rs-preview {
		min-height: 0;
		order: -1;
	}

	.rs-preview__empty {
		padding: 22px 16px;
	}

	.rs-seo__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.rs-shell {
		padding-top: 28px;
	}

	.rs-panel {
		border-radius: 18px;
		padding: 16px;
	}

	.rs-field {
		padding: 14px;
	}

	.rs-field__control--pattern {
		max-width: none;
	}

	.rs-go {
		width: 100%;
	}

	.rs-hero__title {
		font-size: clamp(1.9rem, 8vw, 2.5rem);
	}
}
