/* ── Operational page heroes v2 (account, catalog, panel) ── */
.rsp-wh-page-hero {
	position: relative;
	padding: clamp(36px, 6vw, 56px) 0 clamp(40px, 6vw, 64px);
	overflow: hidden;
	isolation: isolate;
}

.rsp-wh-page-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.rsp-wh-page-hero__mesh {
	position: absolute;
	inset: 0;
	opacity: 0.9;
}

.rsp-wh-page-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: rspWhPageFloat 14s ease-in-out infinite;
}

.rsp-wh-page-hero__orb--1 { animation-delay: 0s; }
.rsp-wh-page-hero__orb--2 { animation-delay: -4s; }
.rsp-wh-page-hero__orb--3 { animation-delay: -8s; }

@keyframes rspWhPageFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(12px, -16px) scale(1.05); }
}

.rsp-wh-page-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 15%, transparent 75%);
}

.rsp-wh-page-hero__noise {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.rsp-wh-page-hero--account,
.rsp-wh-page-hero--panel {
	color: #fff;
	background: #0c0a09;
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__mesh,
.rsp-wh-page-hero--panel .rsp-wh-page-hero__mesh {
	background:
		radial-gradient(ellipse 80% 60% at 15% 20%, rgba(201, 162, 39, 0.22), transparent 55%),
		radial-gradient(ellipse 60% 50% at 85% 80%, rgba(201, 162, 39, 0.1), transparent 50%),
		linear-gradient(165deg, #0c0a09 0%, #161310 40%, #1f1a14 100%);
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__orb--1,
.rsp-wh-page-hero--panel .rsp-wh-page-hero__orb--1 {
	width: 480px;
	height: 480px;
	top: -140px;
	left: -100px;
	background: rgba(201, 162, 39, 0.35);
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__orb--2,
.rsp-wh-page-hero--panel .rsp-wh-page-hero__orb--2 {
	width: 320px;
	height: 320px;
	bottom: -80px;
	right: 5%;
	background: rgba(201, 162, 39, 0.15);
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__orb--3,
.rsp-wh-page-hero--panel .rsp-wh-page-hero__orb--3 {
	width: 200px;
	height: 200px;
	top: 40%;
	right: 30%;
	background: rgba(255, 255, 255, 0.04);
}

.rsp-wh-page-hero--catalog {
	color: var(--rsp-wh-ink);
	background: #fdfbf7;
	border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__mesh {
	background:
		radial-gradient(ellipse 70% 55% at 90% 10%, rgba(201, 162, 39, 0.16), transparent 55%),
		radial-gradient(ellipse 50% 40% at 10% 90%, rgba(240, 232, 218, 0.9), transparent 50%),
		linear-gradient(180deg, #fff 0%, #faf6ef 100%);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__orb--1 {
	width: 400px;
	height: 400px;
	top: -100px;
	right: -60px;
	background: rgba(201, 162, 39, 0.2);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__orb--2 {
	width: 280px;
	height: 280px;
	bottom: -60px;
	left: -40px;
	background: rgba(240, 232, 218, 0.8);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__orb--3 {
	width: 160px;
	height: 160px;
	top: 30%;
	left: 40%;
	background: rgba(201, 162, 39, 0.08);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__grid {
	background-image:
		linear-gradient(rgba(26, 23, 20, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(26, 23, 20, 0.035) 1px, transparent 1px);
}

.rsp-wh-page-hero__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 0 0 22px;
	font-size: 0.78rem;
	font-weight: 700;
	position: relative;
	z-index: 2;
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__breadcrumb,
.rsp-wh-page-hero--panel .rsp-wh-page-hero__breadcrumb {
	color: rgba(255, 255, 255, 0.5);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__breadcrumb {
	color: var(--rsp-wh-muted);
}

.rsp-wh-page-hero__breadcrumb a {
	color: var(--rsp-wh-gold-light);
	text-decoration: none;
	transition: color 0.2s ease;
}

.rsp-wh-page-hero__breadcrumb a:hover {
	color: #fff;
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__breadcrumb a {
	color: var(--rsp-wh-gold-dark);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__breadcrumb a:hover {
	color: var(--rsp-wh-ink);
}

.rsp-wh-page-hero__breadcrumb .is-current {
	color: inherit;
	opacity: 0.85;
}

.rsp-wh-page-hero__crumb-sep {
	opacity: 0.45;
	flex-shrink: 0;
}

.rsp-wh-page-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 420px);
	gap: clamp(28px, 5vw, 48px);
	align-items: center;
	position: relative;
	z-index: 2;
}

.rsp-wh-page-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	padding: 8px 16px 8px 12px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 800;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__badge,
.rsp-wh-page-hero--panel .rsp-wh-page-hero__badge {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(201, 162, 39, 0.35);
	color: var(--rsp-wh-gold-light);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__badge {
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(201, 162, 39, 0.25);
	color: var(--rsp-wh-gold-dark);
	box-shadow: 0 4px 20px rgba(201, 162, 39, 0.1);
}

.rsp-wh-page-hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rsp-wh-gold);
	box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.25);
	animation: rspWhPulse 2s ease infinite;
	flex-shrink: 0;
}

.rsp-wh-page-hero__title {
	margin: 0 0 16px;
	font-size: clamp(1.85rem, 4.2vw, 3rem);
	line-height: 1.22;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.rsp-wh-page-hero__title em {
	font-style: normal;
	background: linear-gradient(135deg, #f0d875 0%, var(--rsp-wh-gold) 45%, #a88418 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__title em {
	background: linear-gradient(135deg, var(--rsp-wh-gold-dark) 0%, var(--rsp-wh-gold-light) 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.rsp-wh-page-hero__lead {
	margin: 0 0 24px;
	max-width: 54ch;
	font-size: clamp(0.94rem, 1.9vw, 1.08rem);
	line-height: 1.88;
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__lead,
.rsp-wh-page-hero--panel .rsp-wh-page-hero__lead {
	color: rgba(255, 255, 255, 0.72);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__lead {
	color: var(--rsp-wh-muted);
}

.rsp-wh-page-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.rsp-wh-page-hero__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 12px;
	font-size: 0.78rem;
	font-weight: 800;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__chip {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(201, 162, 39, 0.18);
	color: var(--rsp-wh-ink-soft);
	box-shadow: 0 8px 24px rgba(26, 23, 20, 0.06);
}

.rsp-wh-page-hero__chip i {
	color: var(--rsp-wh-gold-dark);
}

.rsp-wh-page-hero__chip:hover {
	transform: translateY(-2px);
}

.rsp-wh-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rsp-wh-page-hero__actions .rsp-wh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.rsp-wh-page-hero__cta-primary {
	box-shadow: 0 16px 40px rgba(201, 162, 39, 0.35);
}

.rsp-wh-page-hero--account .rsp-wh-btn--outline,
.rsp-wh-page-hero--panel .rsp-wh-btn--outline {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(8px);
}

.rsp-wh-page-hero--account .rsp-wh-btn--outline:hover,
.rsp-wh-page-hero--panel .rsp-wh-btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--rsp-wh-gold-light);
}

.rsp-wh-page-hero--catalog .rsp-wh-btn--white {
	background: var(--rsp-wh-white);
	border: 1px solid rgba(201, 162, 39, 0.2);
}

/* ── Account flow visual ── */
.rsp-wh-page-hero__flow {
	position: relative;
	padding: 8px;
}

.rsp-wh-page-hero__flow-glow {
	position: absolute;
	inset: 20% 10%;
	background: radial-gradient(circle, rgba(201, 162, 39, 0.2), transparent 70%);
	filter: blur(24px);
	pointer-events: none;
}

.rsp-wh-page-hero__flow-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	position: relative;
}

.rsp-wh-page-hero__flow-list::before {
	content: "";
	position: absolute;
	top: 28px;
	bottom: 28px;
	right: 23px;
	width: 2px;
	background: linear-gradient(180deg, var(--rsp-wh-gold) 0%, rgba(201, 162, 39, 0.15) 100%);
	border-radius: 2px;
}

.rsp-wh-page-hero__flow-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: stretch;
	padding: 8px 0;
}

.rsp-wh-page-hero__flow-marker {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 14px;
}

.rsp-wh-page-hero__flow-marker span,
.rsp-wh-page-hero__flow-marker i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	font-size: 0.82rem;
	font-weight: 900;
	border: 2px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.rsp-wh-page-hero__flow-item--active .rsp-wh-page-hero__flow-marker span,
.rsp-wh-page-hero__flow-item--done .rsp-wh-page-hero__flow-marker i {
	background: linear-gradient(145deg, var(--rsp-wh-gold-light) 0%, var(--rsp-wh-gold-dark) 100%);
	border-color: transparent;
	color: #1a1410;
	box-shadow: 0 12px 28px rgba(201, 162, 39, 0.4);
}

.rsp-wh-page-hero__flow-card {
	display: flex;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.rsp-wh-page-hero__flow-item--active .rsp-wh-page-hero__flow-card {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(201, 162, 39, 0.45);
	transform: translateX(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.rsp-wh-page-hero__flow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(201, 162, 39, 0.15);
	color: var(--rsp-wh-gold-light);
	font-size: 1rem;
	flex-shrink: 0;
}

.rsp-wh-page-hero__flow-item--active .rsp-wh-page-hero__flow-icon {
	background: rgba(201, 162, 39, 0.28);
}

.rsp-wh-page-hero__flow-text {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.rsp-wh-page-hero__flow-text strong {
	font-size: 0.92rem;
	font-weight: 800;
	color: #fff;
}

.rsp-wh-page-hero__flow-text span {
	font-size: 0.76rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.58);
}

.rsp-wh-page-hero__flow-item--active .rsp-wh-page-hero__flow-text span {
	color: rgba(255, 255, 255, 0.78);
}

/* ── Catalog bento visual ── */
.rsp-wh-page-hero__bento {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 120px);
	gap: 12px;
	min-height: 280px;
	padding: 12px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(201, 162, 39, 0.16);
	box-shadow: 0 24px 60px rgba(26, 23, 20, 0.1);
	backdrop-filter: blur(12px);
}

.rsp-wh-page-hero__bento-cell {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(26, 23, 20, 0.12);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.rsp-wh-page-hero__bento-cell:hover {
	transform: scale(1.03);
	z-index: 2;
}

.rsp-wh-page-hero__bento-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rsp-wh-page-hero__bento-cell span {
	position: absolute;
	inset: auto 8px 8px 8px;
	padding: 6px 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.92);
	font-size: 0.72rem;
	font-weight: 800;
	color: var(--rsp-wh-ink);
	text-align: center;
	backdrop-filter: blur(8px);
}

.rsp-wh-page-hero__bento-cell--a { transform: rotate(-2deg); }
.rsp-wh-page-hero__bento-cell--b { transform: rotate(2deg); margin-top: 8px; }
.rsp-wh-page-hero__bento-cell--c { transform: rotate(1deg); }
.rsp-wh-page-hero__bento-cell--d { transform: rotate(-1.5deg); margin-top: -8px; }

.rsp-wh-page-hero__bento-float {
	position: absolute;
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 16px;
	border-radius: 16px;
	background: linear-gradient(135deg, #1a1714 0%, #2a2318 100%);
	color: #fff;
	box-shadow: 0 16px 40px rgba(26, 23, 20, 0.25);
	animation: rspWhPageFloat 6s ease-in-out infinite;
}

.rsp-wh-page-hero__bento-float--price {
	top: -8px;
	left: -12px;
}

.rsp-wh-page-hero__bento-float--cart {
	bottom: 12px;
	right: -8px;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	font-size: 0.76rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--rsp-wh-gold) 0%, var(--rsp-wh-gold-dark) 100%);
	color: #1a1410;
	animation-delay: -2s;
}

.rsp-wh-page-hero__bento-float-label {
	font-size: 0.68rem;
	opacity: 0.72;
	font-weight: 700;
}

.rsp-wh-page-hero__bento-float strong {
	font-size: 0.88rem;
	font-weight: 900;
	color: var(--rsp-wh-gold-light);
}

/* ── Panel dashboard visual ── */
.rsp-wh-page-hero__dash {
	padding: 20px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.rsp-wh-page-hero__dash-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rsp-wh-page-hero__dash-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.rsp-wh-page-hero__dash-bar span:nth-child(1) { background: #ff5f57; }
.rsp-wh-page-hero__dash-bar span:nth-child(2) { background: #febc2e; }
.rsp-wh-page-hero__dash-bar span:nth-child(3) { background: #28c840; }

.rsp-wh-page-hero__dash-bar em {
	margin-right: auto;
	font-style: normal;
	font-size: 0.76rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.55);
}

.rsp-wh-page-hero__dash-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 16px;
}

.rsp-wh-page-hero__dash-tile {
	padding: 14px 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	transition: transform 0.25s ease, background 0.25s ease;
}

.rsp-wh-page-hero__dash-tile:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.1);
}

.rsp-wh-page-hero__dash-tile strong {
	display: block;
	font-size: 1.35rem;
	font-weight: 900;
	color: var(--rsp-wh-gold-light);
	line-height: 1.2;
}

.rsp-wh-page-hero__dash-tile span {
	font-size: 0.68rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.55);
}

.rsp-wh-page-hero__dash-feed {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.rsp-wh-page-hero__dash-feed li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.2);
	font-size: 0.78rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.75);
}

.rsp-wh-page-hero__dash-feed .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.rsp-wh-page-hero__dash-feed .dot--gold { background: var(--rsp-wh-gold); box-shadow: 0 0 8px rgba(201, 162, 39, 0.6); }
.rsp-wh-page-hero__dash-feed .dot--green { background: #28c840; box-shadow: 0 0 8px rgba(40, 200, 64, 0.5); }
.rsp-wh-page-hero__dash-feed .dot--blue { background: #5ac8fa; box-shadow: 0 0 8px rgba(90, 200, 250, 0.5); }

/* ── Metrics strip ── */
.rsp-wh-page-hero__metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 36px 0 0;
	padding: 0;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	z-index: 2;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__metrics,
.rsp-wh-page-hero--catalog .rsp-wh-page-hero__metrics {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__metrics {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(201, 162, 39, 0.16);
	box-shadow: 0 16px 40px rgba(26, 23, 20, 0.08);
}

.rsp-wh-page-hero__metric {
	margin: 0;
	padding: 20px 16px;
	text-align: center;
	border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__metric {
	border-inline-start-color: rgba(201, 162, 39, 0.12);
}

.rsp-wh-page-hero__metric:first-child {
	border-inline-start: none;
}

.rsp-wh-page-hero__metric dt {
	margin: 0 0 4px;
	font-size: clamp(1.2rem, 2.4vw, 1.6rem);
	font-weight: 900;
	line-height: 1.2;
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__metric dt {
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__metric dt {
	color: var(--rsp-wh-gold-dark);
}

.rsp-wh-page-hero__metric dd {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 700;
}

.rsp-wh-page-hero--account .rsp-wh-page-hero__metric dd {
	color: rgba(255, 255, 255, 0.55);
}

.rsp-wh-page-hero--catalog .rsp-wh-page-hero__metric dd {
	color: var(--rsp-wh-muted);
}

.rsp-wh-page-hero__denied {
	margin: 24px 0;
	padding: 18px 20px;
	border-radius: 16px;
	background: rgba(198, 40, 40, 0.1);
	border: 1px solid rgba(198, 40, 40, 0.22);
	color: #ffcdd2;
	font-weight: 700;
}

/* Page reveal (same easing as home) */
.rsp-wh-page-reveal {
	/* Visible until JS opts the page into the animated reveal state. */
	opacity: 1;
	transform: none;
	transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

html.rsp-wh-reveal-ready .rsp-wh-page-reveal {
	opacity: 0;
	transform: translateY(24px);
}

.rsp-wh-page-reveal.is-visible,
html.rsp-wh-reveal-ready .rsp-wh-page-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.rsp-wh-page-reveal--delay { transition-delay: 0.1s; }
.rsp-wh-page-reveal--delay-2 { transition-delay: 0.22s; }

@media (max-width: 1024px) {
	.rsp-wh-page-hero__layout {
		grid-template-columns: 1fr;
	}

	.rsp-wh-page-hero__bento {
		max-width: 420px;
		margin-inline: auto;
	}
}

@media (max-width: 720px) {
	.rsp-wh-page-hero__metrics {
		grid-template-columns: repeat(2, 1fr);
	}

	.rsp-wh-page-hero__metric:nth-child(3) {
		border-inline-start: none;
	}

	.rsp-wh-page-hero__metric {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.rsp-wh-page-hero--catalog .rsp-wh-page-hero__metric {
		border-bottom-color: rgba(201, 162, 39, 0.1);
	}

	.rsp-wh-page-hero__actions {
		flex-direction: column;
	}

	.rsp-wh-page-hero__actions .rsp-wh-btn {
		width: 100%;
		justify-content: center;
	}

	.rsp-wh-page-hero__bento-float--price {
		left: 4px;
		top: -4px;
	}

	.rsp-wh-page-hero__bento-float--cart {
		right: 4px;
		bottom: 4px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rsp-wh-page-hero__orb,
	.rsp-wh-page-hero__bento-float,
	.rsp-wh-page-reveal {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ═══════════════════════════════════════════════════════════
   Admin panel hero — Awwwards-inspired editorial layout
   ═══════════════════════════════════════════════════════════ */
.rsp-wh-panel-hero {
	position: relative;
	padding: clamp(32px, 5vw, 52px) 0 clamp(28px, 4vw, 40px);
	overflow: hidden;
	color: #fff;
	background: #050505;
	isolation: isolate;
}

.rsp-wh-panel-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.rsp-wh-panel-hero__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 90% 70% at 10% 0%, rgba(201, 162, 39, 0.18), transparent 55%),
		radial-gradient(ellipse 60% 50% at 95% 100%, rgba(255, 255, 255, 0.04), transparent 50%),
		linear-gradient(180deg, #050505 0%, #0f0d0b 45%, #14110e 100%);
}

.rsp-wh-panel-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	animation: rspWhPageFloat 16s ease-in-out infinite;
}

.rsp-wh-panel-hero__orb--1 {
	width: 520px;
	height: 520px;
	top: -180px;
	right: -120px;
	background: rgba(201, 162, 39, 0.22);
}

.rsp-wh-panel-hero__orb--2 {
	width: 360px;
	height: 360px;
	bottom: -120px;
	left: -80px;
	background: rgba(255, 255, 255, 0.05);
	animation-delay: -6s;
}

.rsp-wh-panel-hero__line {
	position: absolute;
	top: 18%;
	left: -10%;
	width: 120%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.35), transparent);
	transform: rotate(-4deg);
}

.rsp-wh-panel-hero__watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -52%);
	font-size: clamp(8rem, 22vw, 16rem);
	font-weight: 900;
	letter-spacing: -0.06em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
	opacity: 0.9;
	user-select: none;
}

.rsp-wh-panel-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, #000 10%, transparent 80%);
}

.rsp-wh-panel-hero__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: clamp(28px, 5vw, 44px);
	position: relative;
	z-index: 2;
}

.rsp-wh-panel-hero__crumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 0.76rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.45);
}

.rsp-wh-panel-hero__crumb a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color 0.2s ease;
}

.rsp-wh-panel-hero__crumb a:hover {
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-panel-hero__crumb-sep {
	opacity: 0.35;
}

.rsp-wh-panel-hero__live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

.rsp-wh-panel-hero__live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #28c840;
	box-shadow: 0 0 0 4px rgba(40, 200, 64, 0.2);
	animation: rspWhPulse 2s ease infinite;
}

.rsp-wh-panel-hero__stage {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
	gap: clamp(24px, 4vw, 40px);
	align-items: end;
	position: relative;
	z-index: 2;
	margin-bottom: clamp(32px, 5vw, 48px);
}

.rsp-wh-panel-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	padding: 8px 16px 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(201, 162, 39, 0.35);
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-panel-hero__eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rsp-wh-gold);
	box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.22);
	animation: rspWhPulse 2s ease infinite;
}

.rsp-wh-panel-hero__title {
	margin: 0 0 18px;
	font-size: clamp(2.2rem, 5.5vw, 4.2rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.04em;
	max-width: 12ch;
}

.rsp-wh-panel-hero__title em {
	font-style: normal;
	background: linear-gradient(135deg, #fff 0%, var(--rsp-wh-gold-light) 50%, var(--rsp-wh-gold) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rsp-wh-panel-hero__lead {
	margin: 0 0 28px;
	max-width: 48ch;
	font-size: clamp(0.94rem, 1.8vw, 1.06rem);
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.62);
}

.rsp-wh-panel-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rsp-wh-panel-hero__actions .rsp-wh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.rsp-wh-panel-hero__actions .rsp-wh-btn--outline {
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.2);
}

.rsp-wh-panel-hero__board {
	padding: 22px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	box-shadow:
		0 32px 80px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.rsp-wh-panel-hero__board:hover {
	transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.rsp-wh-panel-hero__board-chrome {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rsp-wh-panel-hero__board-chrome span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.rsp-wh-panel-hero__board-chrome span:nth-child(1) { background: #ff5f57; }
.rsp-wh-panel-hero__board-chrome span:nth-child(2) { background: #febc2e; }
.rsp-wh-panel-hero__board-chrome span:nth-child(3) { background: #28c840; }

.rsp-wh-panel-hero__board-chrome em {
	margin-right: auto;
	font-style: normal;
	font-size: 0.72rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rsp-wh-panel-hero__board-head {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rsp-wh-panel-hero__board-head strong {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 900;
	line-height: 1;
	color: var(--rsp-wh-gold-light);
	letter-spacing: -0.03em;
}

.rsp-wh-panel-hero__board-head span {
	font-size: 0.78rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
}

.rsp-wh-panel-hero__board-feed {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.rsp-wh-panel-hero__board-item {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: background 0.25s ease, transform 0.25s ease;
}

.rsp-wh-panel-hero__board-item:hover {
	background: rgba(255, 255, 255, 0.06);
	transform: translateX(-3px);
}

.rsp-wh-panel-hero__board-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	font-size: 0.9rem;
}

.rsp-wh-panel-hero__board-item--gold .rsp-wh-panel-hero__board-icon {
	background: rgba(201, 162, 39, 0.18);
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-panel-hero__board-item--green .rsp-wh-panel-hero__board-icon {
	background: rgba(40, 200, 64, 0.15);
	color: #6ee77a;
}

.rsp-wh-panel-hero__board-item--blue .rsp-wh-panel-hero__board-icon {
	background: rgba(90, 200, 250, 0.15);
	color: #8ed4ff;
}

.rsp-wh-panel-hero__board-item strong {
	display: block;
	font-size: 0.84rem;
	font-weight: 800;
	color: #fff;
}

.rsp-wh-panel-hero__board-item span {
	display: block;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.48);
	margin-top: 2px;
}

/* Score cards — Awwwards nominee / SOTD style */
.rsp-wh-panel-hero__scores {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(12px, 2vw, 18px);
	position: relative;
	z-index: 2;
	margin-bottom: clamp(24px, 4vw, 36px);
}

.rsp-wh-panel-hero__score {
	position: relative;
	padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 22px);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.45s ease,
		background 0.45s ease;
	animation: rspWhPanelScoreIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: calc(0.08s * var(--score-i, 0));
}

@keyframes rspWhPanelScoreIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.rsp-wh-panel-hero__score::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--score-accent, rgba(255, 255, 255, 0.2));
}

.rsp-wh-panel-hero__score--pending { --score-accent: var(--rsp-wh-gold); }
.rsp-wh-panel-hero__score--approved { --score-accent: #28c840; }
.rsp-wh-panel-hero__score--rejected { --score-accent: #ff5f57; }
.rsp-wh-panel-hero__score--suspended { --score-accent: #febc2e; }
.rsp-wh-panel-hero__score--neutral { --score-accent: rgba(255, 255, 255, 0.3); }

.rsp-wh-panel-hero__score:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.16);
}

.rsp-wh-panel-hero__score-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.82rem;
}

.rsp-wh-panel-hero__score-index {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.rsp-wh-panel-hero__score-value {
	margin: 0 0 6px;
	font-size: clamp(2.4rem, 5vw, 3.4rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.rsp-wh-panel-hero__score--pending .rsp-wh-panel-hero__score-value { color: var(--rsp-wh-gold-light); }
.rsp-wh-panel-hero__score--approved .rsp-wh-panel-hero__score-value { color: #6ee77a; }
.rsp-wh-panel-hero__score--rejected .rsp-wh-panel-hero__score-value { color: #ff8a84; }
.rsp-wh-panel-hero__score--suspended .rsp-wh-panel-hero__score-value { color: #ffd166; }

.rsp-wh-panel-hero__score-label {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.52);
}

/* Marquee ticker */
.rsp-wh-panel-hero__marquee-wrap {
	position: relative;
	z-index: 2;
	overflow: hidden;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.rsp-wh-panel-hero__marquee {
	display: flex;
	width: max-content;
	animation: rspWhPanelMarquee 36s linear infinite;
}

.rsp-wh-panel-hero__marquee-track {
	display: flex;
	align-items: center;
	gap: 28px;
	padding-inline-end: 28px;
	white-space: nowrap;
}

.rsp-wh-panel-hero__marquee-track span {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}

.rsp-wh-panel-hero__marquee-dot {
	color: var(--rsp-wh-gold) !important;
	font-size: 0.5rem !important;
	opacity: 0.7;
}

@keyframes rspWhPanelMarquee {
	to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
	.rsp-wh-panel-hero__stage {
		grid-template-columns: 1fr;
	}

	.rsp-wh-panel-hero__board {
		transform: none;
		max-width: 440px;
	}

	.rsp-wh-panel-hero__scores {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rsp-wh-panel-hero__title {
		max-width: none;
	}
}

@media (max-width: 560px) {
	.rsp-wh-panel-hero__scores {
		grid-template-columns: 1fr;
	}

	.rsp-wh-panel-hero__actions {
		flex-direction: column;
	}

	.rsp-wh-panel-hero__actions .rsp-wh-btn {
		width: 100%;
		justify-content: center;
	}

	.rsp-wh-panel-hero__top {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rsp-wh-panel-hero__marquee,
	.rsp-wh-panel-hero__orb,
	.rsp-wh-panel-hero__score {
		animation: none !important;
	}

	.rsp-wh-panel-hero__board {
		transform: none !important;
	}
}

/* ═══════════════════════════════════════════════════════════
   Wholesaler user panel hero — Awwwards partner dashboard
   ═══════════════════════════════════════════════════════════ */
.rsp-wh-user-hero {
	position: relative;
	padding: clamp(36px, 6vw, 60px) 0 clamp(32px, 5vw, 48px);
	overflow: hidden;
	color: #fff;
	background: #070605;
	isolation: isolate;
}

.rsp-wh-user-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.rsp-wh-user-hero__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 85% 65% at 85% 0%, rgba(201, 162, 39, 0.24), transparent 58%),
		radial-gradient(ellipse 55% 45% at 5% 100%, rgba(255, 214, 120, 0.08), transparent 52%),
		linear-gradient(165deg, #070605 0%, #12100d 42%, #1a1611 100%);
}

.rsp-wh-user-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(88px);
	animation: rspWhPageFloat 18s ease-in-out infinite;
}

.rsp-wh-user-hero__orb--1 {
	width: 460px;
	height: 460px;
	top: -160px;
	left: -100px;
	background: rgba(201, 162, 39, 0.28);
}

.rsp-wh-user-hero__orb--2 {
	width: 340px;
	height: 340px;
	bottom: -100px;
	right: 8%;
	background: rgba(255, 255, 255, 0.06);
	animation-delay: -5s;
}

.rsp-wh-user-hero__orb--3 {
	width: 200px;
	height: 200px;
	top: 42%;
	right: 38%;
	background: rgba(201, 146, 46, 0.12);
	animation-delay: -10s;
}

.rsp-wh-user-hero__line {
	position: absolute;
	top: 22%;
	right: -8%;
	width: 115%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4), transparent);
	transform: rotate(3deg);
}

.rsp-wh-user-hero__watermark {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(5rem, 14vw, 11rem);
	font-weight: 900;
	letter-spacing: 0.12em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
	opacity: 0.85;
	user-select: none;
}

.rsp-wh-user-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 90% 80% at 50% 25%, #000 12%, transparent 78%);
}

.rsp-wh-user-hero__noise {
	position: absolute;
	inset: 0;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.rsp-wh-user-hero__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: clamp(30px, 5vw, 48px);
	position: relative;
	z-index: 2;
}

.rsp-wh-user-hero__crumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 0.76rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.45);
}

.rsp-wh-user-hero__crumb a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color 0.2s ease;
}

.rsp-wh-user-hero__crumb a:hover {
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-user-hero__crumb-sep {
	opacity: 0.5;
	font-size: 0.65rem;
}

.rsp-wh-user-hero__status {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.rsp-wh-user-hero__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1rem;
	color: var(--rsp-wh-ink);
	background: linear-gradient(135deg, var(--rsp-wh-gold-light), var(--rsp-wh-gold));
	box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.rsp-wh-user-hero__live {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.76rem;
	font-weight: 800;
	backdrop-filter: blur(12px);
}

.rsp-wh-user-hero__live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #28c840;
	box-shadow: 0 0 12px rgba(40, 200, 64, 0.8);
	animation: rspWhUserPulse 2s ease-in-out infinite;
}

@keyframes rspWhUserPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.65; transform: scale(0.92); }
}

.rsp-wh-user-hero__status-name {
	font-size: 0.82rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.55);
}

.rsp-wh-user-hero__stage {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 400px);
	gap: clamp(28px, 5vw, 48px);
	align-items: center;
	position: relative;
	z-index: 2;
}

.rsp-wh-user-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(201, 162, 39, 0.12);
	border: 1px solid rgba(201, 162, 39, 0.22);
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-user-hero__eyebrow i {
	font-size: 0.85rem;
}

.rsp-wh-user-hero__title {
	margin: 0 0 16px;
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.03em;
	max-width: 14ch;
}

.rsp-wh-user-hero__title em {
	font-style: normal;
	background: linear-gradient(135deg, #fff 0%, var(--rsp-wh-gold-light) 55%, var(--rsp-wh-gold) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rsp-wh-user-hero__title-sub {
	display: block;
	margin-top: 0.35em;
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.72);
	letter-spacing: -0.01em;
}

.rsp-wh-user-hero__lead {
	margin: 0 0 26px;
	max-width: 52ch;
	font-size: clamp(0.92rem, 1.6vw, 1.02rem);
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.62);
}

.rsp-wh-user-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rsp-wh-user-hero__actions .rsp-wh-btn {
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.rsp-wh-user-hero__actions .rsp-wh-btn:hover {
	transform: translateY(-3px) scale(1.02);
}

.rsp-wh-user-hero__actions .rsp-wh-btn--outline {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.04);
}

.rsp-wh-user-hero__actions .rsp-wh-btn--outline:hover {
	border-color: rgba(201, 162, 39, 0.55);
	background: rgba(201, 162, 39, 0.1);
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-user-hero__board {
	position: relative;
	padding: 20px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.rsp-wh-user-hero__board:hover {
	transform: perspective(1200px) rotateY(-2deg) rotateX(2deg) translateY(-6px);
}

.rsp-wh-user-hero__board-chrome {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rsp-wh-user-hero__board-chrome span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.rsp-wh-user-hero__board-chrome span:nth-child(1) { background: #ff5f57; }
.rsp-wh-user-hero__board-chrome span:nth-child(2) { background: #febc2e; }
.rsp-wh-user-hero__board-chrome span:nth-child(3) { background: #28c840; }

.rsp-wh-user-hero__board-chrome em {
	margin-right: auto;
	font-style: normal;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}

.rsp-wh-user-hero__board-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.rsp-wh-user-hero__ring {
	position: relative;
	width: 72px;
	height: 72px;
	flex-shrink: 0;
}

.rsp-wh-user-hero__ring svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.rsp-wh-user-hero__ring-bg {
	fill: none;
	stroke: rgba(255, 255, 255, 0.08);
	stroke-width: 3;
}

.rsp-wh-user-hero__ring-fill {
	fill: none;
	stroke: var(--rsp-wh-gold);
	stroke-width: 3;
	stroke-linecap: round;
}

.rsp-wh-user-hero__ring strong {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.82rem;
	font-weight: 900;
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-user-hero__board-head > div:last-child strong {
	display: block;
	font-size: 1.75rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 4px;
}

.rsp-wh-user-hero__board-head > div:last-child span {
	font-size: 0.76rem;
	color: rgba(255, 255, 255, 0.5);
}

.rsp-wh-user-hero__board-feed {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.rsp-wh-user-hero__board-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: background 0.2s ease, border-color 0.2s ease;
}

.rsp-wh-user-hero__board-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(201, 162, 39, 0.2);
}

.rsp-wh-user-hero__board-link {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

.rsp-wh-user-hero__board-link:hover strong {
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-user-hero__board-icon {
	width: 38px;
	height: 38px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	flex-shrink: 0;
}

.rsp-wh-user-hero__board-item--gold .rsp-wh-user-hero__board-icon {
	background: rgba(201, 162, 39, 0.18);
	color: var(--rsp-wh-gold-light);
}

.rsp-wh-user-hero__board-item--amber .rsp-wh-user-hero__board-icon {
	background: rgba(254, 188, 46, 0.15);
	color: #ffd166;
}

.rsp-wh-user-hero__board-item--green .rsp-wh-user-hero__board-icon {
	background: rgba(40, 200, 64, 0.14);
	color: #6ee77a;
}

.rsp-wh-user-hero__board-item strong {
	display: block;
	font-size: 0.84rem;
	margin-bottom: 2px;
}

.rsp-wh-user-hero__board-item span {
	font-size: 0.74rem;
	color: rgba(255, 255, 255, 0.48);
}

.rsp-wh-user-hero__scores {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: clamp(28px, 4vw, 40px);
	position: relative;
	z-index: 2;
}

.rsp-wh-user-hero__score {
	position: relative;
	padding: 18px 18px 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease;
	animation: rspWhUserScoreIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: calc(var(--score-i, 0) * 0.08s + 0.15s);
}

@keyframes rspWhUserScoreIn {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

.rsp-wh-user-hero__score::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: var(--score-accent, rgba(255, 255, 255, 0.2));
}

.rsp-wh-user-hero__score--gold { --score-accent: var(--rsp-wh-gold); }
.rsp-wh-user-hero__score--pending { --score-accent: #febc2e; }
.rsp-wh-user-hero__score--approved { --score-accent: #28c840; }
.rsp-wh-user-hero__score--neutral { --score-accent: rgba(255, 255, 255, 0.25); }

.rsp-wh-user-hero__score:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 162, 39, 0.25);
}

.rsp-wh-user-hero__score-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.9rem;
}

.rsp-wh-user-hero__score-index {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	opacity: 0.5;
}

.rsp-wh-user-hero__score-value {
	margin: 0 0 6px;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	line-height: 1;
}

.rsp-wh-user-hero__score--gold .rsp-wh-user-hero__score-value { color: var(--rsp-wh-gold-light); }
.rsp-wh-user-hero__score--pending .rsp-wh-user-hero__score-value { color: #ffd166; }
.rsp-wh-user-hero__score--approved .rsp-wh-user-hero__score-value { color: #6ee77a; }

.rsp-wh-user-hero__score-label {
	margin: 0;
	font-size: 0.76rem;
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.5;
}

.rsp-wh-user-hero__marquee-wrap {
	margin-top: clamp(28px, 4vw, 40px);
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.rsp-wh-user-hero__marquee {
	display: flex;
	width: max-content;
}

.rsp-wh-user-hero__marquee-track {
	display: flex;
	align-items: center;
	gap: 28px;
	padding-inline: 14px;
	animation: rspWhUserMarquee 32s linear infinite;
}

.rsp-wh-user-hero__marquee-track span {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.28);
	white-space: nowrap;
}

.rsp-wh-user-hero__marquee-dot {
	color: var(--rsp-wh-gold);
	opacity: 0.45;
	font-size: 0.5rem !important;
}

@keyframes rspWhUserMarquee {
	to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
	.rsp-wh-user-hero__stage {
		grid-template-columns: 1fr;
	}

	.rsp-wh-user-hero__board {
		transform: none;
		max-width: 440px;
	}

	.rsp-wh-user-hero__scores {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rsp-wh-user-hero__title {
		max-width: none;
	}
}

@media (max-width: 560px) {
	.rsp-wh-user-hero__scores {
		grid-template-columns: 1fr;
	}

	.rsp-wh-user-hero__actions {
		flex-direction: column;
	}

	.rsp-wh-user-hero__actions .rsp-wh-btn {
		width: 100%;
		justify-content: center;
	}

	.rsp-wh-user-hero__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.rsp-wh-user-hero__status {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rsp-wh-user-hero__marquee,
	.rsp-wh-user-hero__orb,
	.rsp-wh-user-hero__score,
	.rsp-wh-user-hero__live-dot {
		animation: none !important;
	}

	.rsp-wh-user-hero__board {
		transform: none !important;
	}
}

