/*
 * NV Reunion Studio - front end
 *
 * Palette comes from photographic materials: album board paper, plum ink,
 * oxidised silver-teal and the gold of a photo corner. The stage is the one
 * dark surface, so the eye goes to the people being arranged.
 */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,600&family=Karla:wght@400;500;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

.nvrs {
	/* Light: album board paper, plum ink, oxidised teal, photo-corner gold. */
	--nvrs-paper: #ede7e3;
	--nvrs-card: #f7f4f1;
	--nvrs-raise: #ffffff;
	--nvrs-ink: #241b2b;
	--nvrs-ink-soft: #6a5f72;
	--nvrs-line: #d9cfc8;
	--nvrs-teal: #3f7a72;
	--nvrs-teal-dark: #2f5c56;
	--nvrs-gold: #b08a4a;
	--nvrs-stage: #1b1e22;
	--nvrs-stage-2: #262b31;
	--nvrs-danger: #9c3d3d;
	--nvrs-good: #2f6b46;
	--nvrs-shadow: 0 1px 0 rgba(36, 27, 43, 0.05);

	--nvrs-r: 14px;
	--nvrs-r-sm: 9px;
	--nvrs-gap: 18px;

	--nvrs-display: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
	--nvrs-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--nvrs-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;

	font-family: var(--nvrs-body);
	color: var(--nvrs-ink);
	background: var(--nvrs-paper);
	padding: clamp(16px, 3vw, 32px);
	border-radius: var(--nvrs-r);
	line-height: 1.5;
	box-sizing: border-box;
	position: relative;
}

/* Dark is the default for the studio itself, the way editing tools tend to be:
   warm graphite rather than pure black, so photographs keep their colour. */
.nvrs[data-theme="dark"] {
	--nvrs-paper: #16151a;
	--nvrs-card: #1f1e25;
	--nvrs-raise: #2a2830;
	--nvrs-ink: #ede9f0;
	--nvrs-ink-soft: #9e97a8;
	--nvrs-line: #38353f;
	--nvrs-teal: #5fb3a6;
	--nvrs-teal-dark: #4a9a8e;
	--nvrs-gold: #d7a94f;
	--nvrs-stage: #0f0e12;
	--nvrs-stage-2: #1a191f;
	--nvrs-danger: #d97b7b;
	--nvrs-good: #6cc196;
	--nvrs-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.nvrs *,
.nvrs *::before,
.nvrs *::after {
	box-sizing: inherit;
}

.nvrs button {
	font-family: inherit;
	cursor: pointer;
}

.nvrs :focus-visible {
	outline: 2px solid var(--nvrs-teal);
	outline-offset: 2px;
}

/* ---------------------------------------------------------------- type */

.nvrs-eyebrow {
	font-family: var(--nvrs-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
	margin: 0 0 2px;
}

.nvrs-bar__title {
	font-family: var(--nvrs-display);
	font-weight: 400;
	font-size: clamp(26px, 3.4vw, 40px);
	line-height: 1.05;
	margin: 0;
	letter-spacing: -0.01em;
}

.nvrs-panel__title {
	font-family: var(--nvrs-display);
	font-size: 19px;
	font-weight: 600;
	margin: 0;
	letter-spacing: -0.005em;
}

.nvrs-label {
	display: block;
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
	margin-bottom: 9px;
	padding: 0;
}

.nvrs-note {
	font-size: 12px;
	color: var(--nvrs-ink-soft);
	margin: 14px 0 0;
	line-height: 1.45;
}

.nvrs-count {
	font-family: var(--nvrs-mono);
	font-size: 11px;
	color: var(--nvrs-ink-soft);
}

.nvrs-dot {
	display: inline-block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.5;
	vertical-align: middle;
	margin: 0 7px;
}

/* ---------------------------------------------------------------- bar */

.nvrs-bar {
	display: flex;
	align-items: flex-end;
	gap: var(--nvrs-gap);
	flex-wrap: wrap;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--nvrs-line);
	margin-bottom: var(--nvrs-gap);
}

.nvrs-bar__id {
	flex: 0 0 auto;
}

.nvrs-tools {
	display: flex;
	gap: 6px;
	flex: 1 1 340px;
	overflow-x: auto;
	padding-bottom: 2px;
	scrollbar-width: thin;
}

.nvrs-tool {
	flex: 0 0 auto;
	text-align: left;
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--nvrs-r-sm);
	padding: 7px 11px;
	color: var(--nvrs-ink-soft);
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nvrs-tool:hover {
	background: rgba(63, 122, 114, 0.08);
	color: var(--nvrs-ink);
}

.nvrs-tool.is-active {
	background: var(--nvrs-card);
	border-color: var(--nvrs-line);
	color: var(--nvrs-ink);
	box-shadow: 0 1px 0 rgba(36, 27, 43, 0.05);
}

.nvrs-tool__label {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	white-space: nowrap;
}

.nvrs-tool__blurb {
	display: block;
	font-size: 11px;
	opacity: 0.72;
	white-space: nowrap;
}

.nvrs-wallet {
	margin-left: auto;
	display: flex;
	align-items: baseline;
	gap: 6px;
	padding: 7px 13px;
	border: 1px solid var(--nvrs-gold);
	border-radius: 999px;
	background: rgba(176, 138, 74, 0.09);
}

.nvrs-wallet__count {
	font-family: var(--nvrs-mono);
	font-size: 17px;
	font-weight: 500;
	color: var(--nvrs-ink);
	font-variant-numeric: tabular-nums;
}

.nvrs-wallet__label {
	font-family: var(--nvrs-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
}

/* ---------------------------------------------------------------- grid */

.nvrs-grid {
	display: grid;
	grid-template-columns: 268px minmax(0, 1fr) 296px;
	gap: var(--nvrs-gap);
	align-items: start;
}

.nvrs-panel {
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r);
	padding: 16px;
}

.nvrs-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 14px;
}

.nvrs-panel__actions {
	display: flex;
	gap: 6px;
}

.nvrs-mini {
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: transparent;
	border: 1px solid var(--nvrs-line);
	border-radius: 999px;
	padding: 4px 10px;
	color: var(--nvrs-ink-soft);
	transition: border-color 0.15s, color 0.15s;
}

.nvrs-mini:hover {
	border-color: var(--nvrs-teal);
	color: var(--nvrs-teal);
}

/* ---------------------------------------------------------------- cast */

.nvrs-drop {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-height: 108px;
	padding: 14px;
	border: 1.5px dashed var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	background: rgba(127, 127, 127, 0.06);
	color: var(--nvrs-ink-soft);
	text-align: center;
	transition: border-color 0.15s, background 0.15s;
}

.nvrs-drop:hover,
.nvrs-drop.is-over {
	border-color: var(--nvrs-teal);
	background: rgba(63, 122, 114, 0.06);
	color: var(--nvrs-teal);
}

.nvrs-drop__icon {
	width: 22px;
	height: 22px;
}

.nvrs-drop__title {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--nvrs-ink);
}

.nvrs-drop__hint {
	font-size: 11.5px;
}

.nvrs-castlist {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nvrs-member {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px;
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	background: var(--nvrs-raise);
}

.nvrs-member.is-staged {
	border-color: var(--nvrs-teal);
	box-shadow: inset 3px 0 0 var(--nvrs-teal);
}

.nvrs-member__thumb {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
	background: var(--nvrs-paper);
}

.nvrs-member__body {
	flex: 1 1 auto;
	min-width: 0;
}

.nvrs-member__name {
	width: 100%;
	border: none;
	background: transparent;
	font-family: var(--nvrs-body);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--nvrs-ink);
	padding: 1px 0;
	border-bottom: 1px solid transparent;
}

.nvrs-member__name:focus {
	outline: none;
	border-bottom-color: var(--nvrs-teal);
}

.nvrs-member__state {
	font-family: var(--nvrs-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
}

.nvrs-member__x {
	background: transparent;
	border: none;
	color: var(--nvrs-ink-soft);
	font-size: 17px;
	line-height: 1;
	padding: 3px 5px;
	border-radius: 5px;
}

.nvrs-member__x:hover {
	color: var(--nvrs-danger);
	background: rgba(156, 61, 61, 0.08);
}

.nvrs-member__bar {
	height: 3px;
	border-radius: 2px;
	background: var(--nvrs-line);
	overflow: hidden;
	margin-top: 4px;
}

.nvrs-member__bar span {
	display: block;
	height: 100%;
	width: 30%;
	background: var(--nvrs-teal);
	animation: nvrs-indeterminate 1.1s ease-in-out infinite;
}

@keyframes nvrs-indeterminate {
	0%   { transform: translateX(-100%); }
	100% { transform: translateX(340%); }
}

/* ---------------------------------------------------------------- stage */

.nvrs-stagewrap {
	padding: 16px;
}

.nvrs-stage {
	border-radius: var(--nvrs-r-sm);
	overflow: hidden;
	background: var(--nvrs-stage);
}

.nvrs-stage__frame {
	position: relative;
	aspect-ratio: 4 / 5;
	max-height: 62vh;
	margin: 0 auto;
	background:
		radial-gradient(120% 80% at 50% 8%, rgba(255, 255, 255, 0.09), transparent 62%),
		linear-gradient(180deg, var(--nvrs-stage-2), var(--nvrs-stage));
	transition: aspect-ratio 0.25s ease;
}

/* The floor line reads as the ground people stand on. */
.nvrs-stage__frame::after {
	content: '';
	position: absolute;
	left: 6%;
	right: 6%;
	bottom: 16%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
	pointer-events: none;
}

.nvrs-row {
	position: absolute;
	left: 0;
	right: 0;
	height: 42%;
	border: 1px dashed transparent;
	transition: background 0.15s, border-color 0.15s;
}

.nvrs-row--back  { top: 12%; }
.nvrs-row--front { top: 46%; }

.nvrs-row.is-target {
	background: rgba(63, 122, 114, 0.14);
	border-color: rgba(122, 196, 185, 0.5);
	border-radius: 6px;
}

.nvrs-row__tag {
	position: absolute;
	left: 10px;
	top: 6px;
	font-family: var(--nvrs-mono);
	font-size: 9.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.34);
	pointer-events: none;
}

.nvrs-stage__empty {
	position: absolute;
	inset: auto 12% 8%;
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.42);
	margin: 0;
}

/* Person token on the stage */
.nvrs-token {
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	cursor: grab;
	touch-action: none;
	user-select: none;
	transition: filter 0.15s;
}

.nvrs-token:active,
.nvrs-token.is-dragging {
	cursor: grabbing;
	z-index: 5;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

.nvrs-token__face {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.82);
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.4);
	background: #333;
	display: block;
}

.nvrs-token--back .nvrs-token__face {
	width: 60px;
	height: 60px;
	opacity: 0.9;
}

.nvrs-token__name {
	font-family: var(--nvrs-mono);
	font-size: 10px;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(0, 0, 0, 0.45);
	padding: 2px 7px;
	border-radius: 999px;
	max-width: 96px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nvrs-stage__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nvrs-callsheet {
	margin-top: 12px;
	font-size: 12.5px;
	color: var(--nvrs-ink-soft);
	line-height: 1.5;
	min-height: 18px;
}

.nvrs-callsheet strong {
	color: var(--nvrs-ink);
	font-weight: 700;
}

/* ---------------------------------------------------------------- setup */

.nvrs-field {
	border: none;
	margin: 0 0 18px;
	padding: 0;
}

.nvrs-styles {
	display: flex;
	flex-direction: column;
	gap: 5px;
	max-height: 236px;
	overflow-y: auto;
	padding-right: 3px;
}

.nvrs-style {
	text-align: left;
	background: var(--nvrs-raise);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	padding: 8px 11px;
	transition: border-color 0.15s, background 0.15s;
}

.nvrs-style:hover {
	border-color: var(--nvrs-teal);
}

.nvrs-style.is-active {
	border-color: var(--nvrs-teal);
	background: rgba(63, 122, 114, 0.09);
}

.nvrs-style__name {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
}

.nvrs-style__blurb {
	display: block;
	font-size: 11.5px;
	color: var(--nvrs-ink-soft);
}

.nvrs-ratios {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.nvrs-ratio {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	background: var(--nvrs-raise);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	padding: 8px 4px;
}

.nvrs-ratio.is-active {
	border-color: var(--nvrs-teal);
	background: rgba(63, 122, 114, 0.09);
}

.nvrs-ratio__box {
	width: 22px;
	border: 1.5px solid var(--nvrs-ink-soft);
	border-radius: 2px;
}

.nvrs-ratio.is-active .nvrs-ratio__box {
	border-color: var(--nvrs-teal);
}

.nvrs-ratio__text {
	font-family: var(--nvrs-mono);
	font-size: 9.5px;
	color: var(--nvrs-ink-soft);
}

.nvrs-textarea {
	width: 100%;
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	padding: 9px 11px;
	font-family: var(--nvrs-body);
	font-size: 13.5px;
	color: var(--nvrs-ink);
	background: var(--nvrs-raise);
	resize: vertical;
}

.nvrs-textarea:focus {
	outline: none;
	border-color: var(--nvrs-teal);
}

.nvrs-check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 18px;
	cursor: pointer;
}

.nvrs-check input {
	accent-color: var(--nvrs-teal);
	width: 15px;
	height: 15px;
}

/* ---------------------------------------------------------------- buttons */

.nvrs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 999px;
	border: 1px solid transparent;
	padding: 11px 22px;
	font-family: var(--nvrs-body);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.15s, transform 0.1s, opacity 0.15s;
}

.nvrs-btn--primary {
	background: var(--nvrs-teal);
	color: #fff;
}

.nvrs-btn--primary:hover:not(:disabled) {
	background: var(--nvrs-teal-dark);
}

.nvrs-btn--primary:active:not(:disabled) {
	transform: translateY(1px);
}

.nvrs-btn--primary:disabled {
	opacity: 0.42;
	cursor: not-allowed;
}

.nvrs-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.nvrs-btn--wide {
	width: 100%;
}

.nvrs-run__cost {
	text-align: center;
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
	margin: 9px 0 0;
}

.nvrs-alert {
	margin: 10px 0 0;
	padding: 9px 11px;
	border-radius: var(--nvrs-r-sm);
	background: rgba(156, 61, 61, 0.09);
	border: 1px solid rgba(156, 61, 61, 0.28);
	color: var(--nvrs-danger);
	font-size: 12.5px;
}

/* ---------------------------------------------------------------- proof */

.nvrs-proof,
.nvrs-sheet {
	margin-top: var(--nvrs-gap);
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r);
	padding: 16px;
}

.nvrs-proof__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}

.nvrs-proof__item {
	position: relative;
	border-radius: var(--nvrs-r-sm);
	overflow: hidden;
	background: var(--nvrs-stage);
	border: 1px solid var(--nvrs-line);
	cursor: zoom-in;
}

.nvrs-proof__item img {
	display: block;
	width: 100%;
	height: auto;
}

.nvrs-proof__tools {
	position: absolute;
	inset: auto 0 0;
	display: flex;
	gap: 6px;
	padding: 8px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
	opacity: 0;
	transition: opacity 0.15s;
}

.nvrs-proof__item:hover .nvrs-proof__tools,
.nvrs-proof__item:focus-within .nvrs-proof__tools {
	opacity: 1;
}

.nvrs-proof__tools a,
.nvrs-proof__tools button {
	font-family: var(--nvrs-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
	border: none;
	border-radius: 999px;
	padding: 5px 11px;
	text-decoration: none;
}

.nvrs-proof__tools a:hover,
.nvrs-proof__tools button:hover {
	background: var(--nvrs-teal);
}

/* Skeleton while developing */
.nvrs-skel {
	aspect-ratio: 4 / 5;
	border-radius: var(--nvrs-r-sm);
	background: linear-gradient(100deg, #e6dfda 30%, #f3eeea 50%, #e6dfda 70%);
	background-size: 220% 100%;
	animation: nvrs-shimmer 1.4s linear infinite;
	display: flex;
	align-items: flex-end;
	padding: 12px;
}

.nvrs-skel span {
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
}

@keyframes nvrs-shimmer {
	0%   { background-position: 130% 0; }
	100% { background-position: -30% 0; }
}

/* ---------------------------------------------------------------- sheet */

.nvrs-sheet__strip {
	display: flex;
	gap: 9px;
	overflow-x: auto;
	padding-bottom: 6px;
}

.nvrs-sheet__cell {
	flex: 0 0 auto;
	width: 108px;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid var(--nvrs-line);
	background: var(--nvrs-raise);
	cursor: zoom-in;
	position: relative;
}

.nvrs-sheet__cell img {
	display: block;
	width: 100%;
	height: 132px;
	object-fit: cover;
}

.nvrs-sheet__cell figcaption {
	font-family: var(--nvrs-mono);
	font-size: 9px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
	padding: 4px 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nvrs-sheet__empty {
	font-size: 13px;
	color: var(--nvrs-ink-soft);
	margin: 0;
}

/* ---------------------------------------------------------------- lightbox */

.nvrs-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(20, 16, 24, 0.93);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 26px;
}

.nvrs-lightbox[hidden] {
	display: none;
}

.nvrs-lightbox img {
	max-width: min(96vw, 1100px);
	max-height: 78vh;
	border-radius: 6px;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
}

.nvrs-lightbox__close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	opacity: 0.75;
}

.nvrs-lightbox__close:hover {
	opacity: 1;
}

/* ---------------------------------------------------------------- gate */

.nvrs-gate {
	display: flex;
	justify-content: center;
}

.nvrs-gate__card {
	max-width: 430px;
	text-align: center;
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r);
	padding: 34px 28px;
}

.nvrs-gate__title {
	font-family: var(--nvrs-display);
	font-size: 27px;
	font-weight: 400;
	margin: 4px 0 10px;
}

.nvrs-gate__body {
	font-size: 14px;
	color: var(--nvrs-ink-soft);
	margin: 0 0 20px;
}

/* ---------------------------------------------------------------- responsive */

@media (max-width: 1080px) {
	.nvrs-grid {
		grid-template-columns: 240px minmax(0, 1fr);
	}
	.nvrs-setup {
		grid-column: 1 / -1;
	}
	.nvrs-styles {
		max-height: none;
		flex-direction: row;
		flex-wrap: wrap;
		overflow: visible;
	}
	.nvrs-style {
		flex: 1 1 180px;
	}
}

@media (max-width: 760px) {
	.nvrs-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.nvrs-bar {
		align-items: flex-start;
	}
	.nvrs-wallet {
		margin-left: 0;
	}
	.nvrs-stage__frame {
		max-height: none;
	}
	.nvrs-token__face {
		width: 56px;
		height: 56px;
	}
	.nvrs-token--back .nvrs-token__face {
		width: 46px;
		height: 46px;
	}
	.nvrs-ratios {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nvrs *,
	.nvrs *::before,
	.nvrs *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

/* ================================================================
 * v2: recipes, engines, assist, showcase
 * ============================================================= */

.nvrs-recipes {
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r);
	padding: 14px 16px;
	margin-bottom: var(--nvrs-gap);
}

.nvrs-recipes__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.nvrs-recipes__cats {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.nvrs-cat {
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: transparent;
	border: none;
	border-bottom: 1.5px solid transparent;
	padding: 4px 2px;
	color: var(--nvrs-ink-soft);
	transition: color 0.15s, border-color 0.15s;
}

.nvrs-cat:hover { color: var(--nvrs-ink); }

.nvrs-cat.is-active {
	color: var(--nvrs-ink);
	border-bottom-color: var(--nvrs-gold);
}

.nvrs-recipes__strip {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 4px;
}

.nvrs-recipe {
	flex: 0 0 auto;
	width: 178px;
	text-align: left;
	background: var(--nvrs-raise);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	padding: 10px 12px;
	transition: border-color 0.15s, background 0.15s, transform 0.1s;
}

.nvrs-recipe:hover {
	border-color: var(--nvrs-gold);
	transform: translateY(-1px);
}

.nvrs-recipe.is-active {
	border-color: var(--nvrs-gold);
	background: rgba(176, 138, 74, 0.1);
}

.nvrs-recipe__name {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	margin-bottom: 2px;
}

.nvrs-recipe__blurb {
	display: block;
	font-size: 11.5px;
	line-height: 1.35;
	color: var(--nvrs-ink-soft);
}

/* ---------------------------------------------------------------- engines */

.nvrs-engines {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.nvrs-engine {
	position: relative;
	text-align: left;
	background: var(--nvrs-raise);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	padding: 8px 11px;
	padding-right: 44px;
	transition: border-color 0.15s, background 0.15s;
}

.nvrs-engine:hover { border-color: var(--nvrs-teal); }

.nvrs-engine.is-active {
	border-color: var(--nvrs-teal);
	background: rgba(63, 122, 114, 0.09);
}

.nvrs-engine__name {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
}

.nvrs-engine__blurb {
	display: block;
	font-size: 11.5px;
	color: var(--nvrs-ink-soft);
}

.nvrs-engine__mult {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	font-family: var(--nvrs-mono);
	font-size: 10px;
	color: var(--nvrs-gold);
	border: 1px solid var(--nvrs-gold);
	border-radius: 999px;
	padding: 1px 6px;
}

/* ---------------------------------------------------------------- assist */

.nvrs-assist__row {
	display: flex;
	gap: 6px;
}

.nvrs-input {
	flex: 1 1 auto;
	min-width: 0;
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	padding: 8px 11px;
	font-family: var(--nvrs-body);
	font-size: 13px;
	background: var(--nvrs-raise);
	color: var(--nvrs-ink);
}

.nvrs-input:focus {
	outline: none;
	border-color: var(--nvrs-teal);
}

.nvrs-mini--solid {
	background: var(--nvrs-ink);
	border-color: var(--nvrs-ink);
	color: #fff;
	white-space: nowrap;
}

.nvrs-mini--solid:hover {
	background: var(--nvrs-teal);
	border-color: var(--nvrs-teal);
	color: #fff;
}

.nvrs-mini:disabled {
	opacity: 0.5;
	cursor: wait;
}

.nvrs-durations {
	display: flex;
	gap: 6px;
}

.nvrs-durations .nvrs-ratio {
	flex: 1 1 auto;
	padding: 9px 4px;
}

/* ---------------------------------------------------------------- showcase */

.nvrs-showcase__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 14px;
}

.nvrs-showcase__item {
	margin: 0;
	border-radius: var(--nvrs-r-sm);
	overflow: hidden;
	border: 1px solid var(--nvrs-line);
	background: var(--nvrs-card);
	position: relative;
}

.nvrs-showcase__item img {
	display: block;
	width: 100%;
	height: auto;
}

.nvrs-showcase__item figcaption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 9px 11px;
}

.nvrs-showcase__label {
	font-size: 12.5px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nvrs-showcase__cta {
	flex: 0 0 auto;
	font-family: var(--nvrs-mono);
	font-size: 9.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nvrs-teal);
	border: 1px solid var(--nvrs-teal);
	border-radius: 999px;
	padding: 3px 9px;
	text-decoration: none;
}

.nvrs-showcase__cta:hover {
	background: var(--nvrs-teal);
	color: #fff;
}

.nvrs-proof__item video {
	border-radius: var(--nvrs-r-sm);
}

/* ================================================================
 * v2.1: chrome for people who live in creative tools
 * ============================================================= */

.nvrs-bar__right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 7px;
}

.nvrs-icon {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: transparent;
	border: 1px solid var(--nvrs-line);
	border-radius: 8px;
	padding: 7px 9px;
	color: var(--nvrs-ink-soft);
	transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.nvrs-icon:hover {
	border-color: var(--nvrs-teal);
	color: var(--nvrs-teal);
}

.nvrs-icon svg {
	width: 16px;
	height: 16px;
}

.nvrs-kbd {
	font-family: var(--nvrs-mono);
	font-size: 9.5px;
	line-height: 1;
	padding: 3px 5px;
	border-radius: 4px;
	border: 1px solid var(--nvrs-line);
	background: rgba(127, 127, 127, 0.1);
	color: var(--nvrs-ink-soft);
	white-space: nowrap;
}

.nvrs-kbd--on {
	border-color: rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.85);
	margin-left: 2px;
}

a.nvrs-wallet {
	text-decoration: none;
	transition: border-color 0.15s, background 0.15s;
}

a.nvrs-wallet:hover {
	background: rgba(176, 138, 74, 0.18);
}

.nvrs-wallet.is-low {
	border-color: var(--nvrs-danger);
	background: rgba(156, 61, 61, 0.12);
}

.nvrs-wallet.is-free {
	border-color: var(--nvrs-teal);
	background: rgba(63, 122, 114, 0.12);
}

/* ---------------------------------------------------------------- focus */

.nvrs-app.is-focused .nvrs-cast,
.nvrs-app.is-focused .nvrs-recipes,
.nvrs-app.is-focused .nvrs-sheet {
	display: none;
}

.nvrs-app.is-focused .nvrs-grid {
	grid-template-columns: minmax(0, 1fr) 296px;
}

.nvrs-app.is-focused .nvrs-stage__frame {
	max-height: 78vh;
}

/* ---------------------------------------------------------------- palette */

.nvrs-palette {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(12, 10, 16, 0.7);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 12vh 20px 20px;
}

.nvrs-palette[hidden] {
	display: none;
}

.nvrs-palette__box {
	width: min(560px, 100%);
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
	overflow: hidden;
}

.nvrs-palette__input {
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--nvrs-line);
	background: transparent;
	padding: 16px 18px;
	font-family: var(--nvrs-body);
	font-size: 16px;
	color: var(--nvrs-ink);
}

.nvrs-palette__input:focus {
	outline: none;
}

.nvrs-palette__list {
	list-style: none;
	margin: 0;
	padding: 6px;
	max-height: 44vh;
	overflow-y: auto;
}

.nvrs-palette__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: 8px;
	cursor: pointer;
}

.nvrs-palette__item.is-cursor {
	background: rgba(95, 179, 166, 0.16);
}

.nvrs-palette__kind {
	font-family: var(--nvrs-mono);
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
	border: 1px solid var(--nvrs-line);
	border-radius: 999px;
	padding: 2px 7px;
	flex: 0 0 auto;
}

.nvrs-palette__name {
	font-size: 14px;
	font-weight: 700;
}

.nvrs-palette__hint {
	font-size: 12px;
	color: var(--nvrs-ink-soft);
	margin-left: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 45%;
}

.nvrs-palette__foot {
	display: flex;
	gap: 16px;
	padding: 9px 16px;
	border-top: 1px solid var(--nvrs-line);
	font-size: 11px;
	color: var(--nvrs-ink-soft);
}

.nvrs-palette__empty {
	padding: 22px;
	text-align: center;
	font-size: 13px;
	color: var(--nvrs-ink-soft);
}

/* ---------------------------------------------------------------- keys */

.nvrs-keys__box {
	padding: 22px 24px 24px;
}

.nvrs-keys__list {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 9px 18px;
}

.nvrs-keys__list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--nvrs-ink-soft);
}

/* ---------------------------------------------------------------- toasts */

.nvrs-toasts {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 100001;
	display: flex;
	flex-direction: column;
	gap: 8px;
	pointer-events: none;
}

.nvrs-toast {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 220px;
	max-width: 340px;
	padding: 11px 14px;
	border-radius: 10px;
	background: var(--nvrs-raise);
	border: 1px solid var(--nvrs-line);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
	font-size: 13.5px;
	color: var(--nvrs-ink);
	pointer-events: auto;
	animation: nvrs-toast-in 0.22s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.nvrs-toast::before {
	content: '';
	width: 3px;
	align-self: stretch;
	border-radius: 2px;
	background: var(--nvrs-teal);
	flex: 0 0 auto;
}

.nvrs-toast--bad::before  { background: var(--nvrs-danger); }
.nvrs-toast--good::before { background: var(--nvrs-good); }

.nvrs-toast__action {
	margin-left: auto;
	background: transparent;
	border: none;
	color: var(--nvrs-teal);
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.nvrs-toast.is-out {
	animation: nvrs-toast-out 0.2s forwards;
}

@keyframes nvrs-toast-in {
	from { opacity: 0; transform: translateY(10px) scale(0.98); }
	to   { opacity: 1; transform: none; }
}

@keyframes nvrs-toast-out {
	to { opacity: 0; transform: translateY(6px); }
}

/* ---------------------------------------------------------------- compare */

.nvrs-compare {
	position: relative;
	overflow: hidden;
	border-radius: var(--nvrs-r-sm);
	cursor: ew-resize;
	touch-action: none;
	user-select: none;
}

.nvrs-compare img {
	display: block;
	width: 100%;
}

.nvrs-compare__before {
	position: absolute;
	inset: 0;
	overflow: hidden;
	width: 50%;
}

.nvrs-compare__before img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: auto;
	max-width: none;
	object-fit: cover;
}

.nvrs-compare__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
	pointer-events: none;
}

.nvrs-compare__handle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.9);
	background: rgba(0, 0, 0, 0.35);
}

.nvrs-compare__tag {
	position: absolute;
	top: 9px;
	font-family: var(--nvrs-mono);
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	padding: 3px 8px;
	border-radius: 999px;
	pointer-events: none;
}

.nvrs-compare__tag--before { left: 9px; }
.nvrs-compare__tag--after  { right: 9px; }

/* ---------------------------------------------------------------- lightbox zoom */

.nvrs-lightbox__stage {
	max-width: min(96vw, 1200px);
	max-height: 76vh;
	overflow: auto;
	border-radius: 6px;
}

.nvrs-lightbox__stage img {
	display: block;
	transition: width 0.18s ease;
}

.nvrs-lightbox__stage.is-fit img {
	max-width: min(96vw, 1200px);
	max-height: 76vh;
	width: auto;
}

.nvrs-lightbox__tools {
	display: flex;
	gap: 6px;
}

.nvrs-lightbox__tools .nvrs-mini {
	border-color: rgba(255, 255, 255, 0.4);
	color: rgba(255, 255, 255, 0.85);
}

.nvrs-lightbox__tools .nvrs-mini.is-active {
	border-color: #fff;
	color: #fff;
}

/* ---------------------------------------------------------------- pricing */

.nvrs-pricing__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--nvrs-line);
	margin-bottom: 22px;
}

.nvrs-packs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
	gap: 12px;
}

.nvrs-pack {
	position: relative;
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r);
	padding: 22px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nvrs-pack.is-featured {
	border-color: var(--nvrs-gold);
}

.nvrs-pack__badge {
	position: absolute;
	top: -10px;
	left: 18px;
	font-family: var(--nvrs-mono);
	font-size: 9.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--nvrs-gold);
	color: #1b1410;
	padding: 3px 9px;
	border-radius: 999px;
}

.nvrs-pack__name {
	font-family: var(--nvrs-display);
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.nvrs-pack__price {
	margin: 6px 0 0;
}

.nvrs-pack__amount {
	font-family: var(--nvrs-display);
	font-size: 36px;
	line-height: 1;
	letter-spacing: -0.02em;
}

.nvrs-pack__credits {
	margin: 8px 0 0;
	font-size: 14px;
}

.nvrs-pack__unit {
	margin: 1px 0 0;
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
}

.nvrs-pack__blurb {
	margin: 10px 0 16px;
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--nvrs-ink-soft);
	flex: 1 1 auto;
}

.nvrs-note--good {
	color: var(--nvrs-good);
}

.nvrs-ledger {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	border-top: 1px solid var(--nvrs-line);
}

.nvrs-ledger__row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 2px;
	border-bottom: 1px solid var(--nvrs-line);
	font-size: 13px;
}

.nvrs-ledger__note { flex: 1 1 auto; }

.nvrs-ledger__delta {
	font-family: var(--nvrs-mono);
	font-variant-numeric: tabular-nums;
}

.nvrs-ledger__delta.is-up   { color: var(--nvrs-good); }
.nvrs-ledger__delta.is-down { color: var(--nvrs-ink-soft); }

.nvrs-ledger__when {
	font-family: var(--nvrs-mono);
	font-size: 11px;
	color: var(--nvrs-ink-soft);
	min-width: 92px;
	text-align: right;
}

@media (max-width: 760px) {
	.nvrs-app.is-focused .nvrs-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.nvrs-palette {
		padding-top: 8vh;
	}
	.nvrs-toasts {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}
	.nvrs-toast {
		max-width: none;
	}
}

/* ================================================================
 * v3: plans, segmented control, seller dashboard
 * ============================================================= */

.nvrs-segmented {
	position: relative;
	display: inline-flex;
	gap: 2px;
	padding: 3px;
	margin-bottom: 20px;
	border: 1px solid var(--nvrs-line);
	border-radius: 999px;
	background: var(--nvrs-card);
}

.nvrs-seg {
	position: relative;
	z-index: 1;
	background: transparent;
	border: none;
	border-radius: 999px;
	padding: 8px 18px;
	font-family: var(--nvrs-body);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--nvrs-ink-soft);
	transition: color 0.18s;
}

.nvrs-seg.is-active {
	color: var(--nvrs-paper);
}

.nvrs-seg__glider {
	position: absolute;
	top: 3px;
	bottom: 3px;
	left: 0;
	border-radius: 999px;
	background: var(--nvrs-ink);
	transition: transform 0.26s cubic-bezier(0.2, 0.9, 0.3, 1), width 0.26s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.nvrs-pack__per {
	font-family: var(--nvrs-mono);
	font-size: 12px;
	color: var(--nvrs-ink-soft);
	margin-left: 2px;
}

.nvrs-pack.is-current {
	border-color: var(--nvrs-teal);
	box-shadow: inset 0 0 0 1px var(--nvrs-teal);
}

.nvrs-perks {
	list-style: none;
	margin: 12px 0 16px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.nvrs-perks li {
	position: relative;
	padding-left: 18px;
	font-size: 12.5px;
	color: var(--nvrs-ink-soft);
}

.nvrs-perks li::before {
	content: '';
	position: absolute;
	left: 1px;
	top: 6px;
	width: 8px;
	height: 4px;
	border-left: 1.5px solid var(--nvrs-teal);
	border-bottom: 1.5px solid var(--nvrs-teal);
	transform: rotate(-45deg);
}

.nvrs-btn--ghost-ink {
	background: transparent;
	border-color: var(--nvrs-line);
	color: var(--nvrs-ink);
}

.nvrs-btn--ghost-ink:hover {
	border-color: var(--nvrs-teal);
	color: var(--nvrs-teal);
}

/* ---------------------------------------------------------------- subscription card */

.nvrs-subcard {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-teal);
	border-radius: var(--nvrs-r);
	padding: 16px 20px;
	margin-bottom: 20px;
}

.nvrs-subcard__name {
	font-family: var(--nvrs-display);
	font-size: 22px;
	font-weight: 600;
	margin: 2px 0 4px;
}

.nvrs-subcard__meta {
	margin: 0;
	font-size: 13px;
	color: var(--nvrs-ink-soft);
}

/* ---------------------------------------------------------------- seller */

.nvrs-status {
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
	border: 1px solid currentColor;
}

.nvrs-status.is-good { color: var(--nvrs-good); }
.nvrs-status.is-warn { color: var(--nvrs-gold); }

.nvrs-callout {
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-left: 3px solid var(--nvrs-gold);
	border-radius: var(--nvrs-r-sm);
	padding: 16px 18px;
	margin-bottom: 20px;
}

.nvrs-callout p {
	margin: 0 0 14px;
	font-size: 13.5px;
	color: var(--nvrs-ink-soft);
	line-height: 1.5;
}

.nvrs-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 10px;
	margin-bottom: 18px;
}

.nvrs-metric {
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	padding: 14px 16px;
}

.nvrs-metric__n {
	display: block;
	font-family: var(--nvrs-display);
	font-size: 26px;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.nvrs-metric__l {
	display: block;
	font-family: var(--nvrs-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
	margin-top: 3px;
}

/* ================================================================
 * v3.1: landing page
 * ============================================================= */

.nvrs-land {
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.nvrs-land__h1 {
	font-family: var(--nvrs-display);
	font-weight: 400;
	font-size: clamp(38px, 6.2vw, 76px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	margin: 6px 0 18px;
	text-wrap: balance;
}

.nvrs-land__h2 {
	font-family: var(--nvrs-display);
	font-weight: 400;
	font-size: clamp(26px, 3.6vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
	text-wrap: balance;
}

.nvrs-land__sub {
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.55;
	color: var(--nvrs-ink-soft);
	max-width: 52ch;
	margin: 0 0 26px;
	text-wrap: pretty;
}

.nvrs-land__lead {
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--nvrs-ink-soft);
	max-width: 58ch;
	margin: 0;
	text-wrap: pretty;
}

/* ---------------------------------------------------------------- hero */

.nvrs-land__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(24px, 5vw, 64px);
	align-items: center;
	padding: clamp(32px, 7vw, 92px) clamp(18px, 4vw, 48px);
}

.nvrs-land__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 26px;
}

.nvrs-btn--big {
	padding: 15px 30px;
	font-size: 15.5px;
}

.nvrs-land__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.nvrs-land__trust li {
	position: relative;
	padding-left: 17px;
	font-family: var(--nvrs-mono);
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
}

.nvrs-land__trust li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 8px;
	height: 4px;
	border-left: 1.5px solid var(--nvrs-teal);
	border-bottom: 1.5px solid var(--nvrs-teal);
	transform: rotate(-45deg);
}

.nvrs-land__compare {
	aspect-ratio: 4 / 5;
	border-radius: var(--nvrs-r);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.nvrs-land__compare img {
	height: 100%;
	object-fit: cover;
}

/* ---------------------------------------------------------------- sections */

.nvrs-land__section {
	padding: clamp(38px, 6vw, 84px) clamp(18px, 4vw, 48px);
}

.nvrs-land__section--band {
	background: var(--nvrs-card);
	border-top: 1px solid var(--nvrs-line);
	border-bottom: 1px solid var(--nvrs-line);
}

.nvrs-land__head {
	max-width: 62ch;
	margin-bottom: 30px;
}

/* ---------------------------------------------------------------- steps */

.nvrs-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
	gap: 18px;
	counter-reset: nvrs-step;
}

.nvrs-step {
	position: relative;
	padding: 26px 22px 24px;
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r);
	background: var(--nvrs-card);
}

.nvrs-land__section--band .nvrs-step {
	background: var(--nvrs-paper);
}

.nvrs-step__n {
	font-family: var(--nvrs-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	color: var(--nvrs-gold);
}

.nvrs-step__t {
	font-family: var(--nvrs-display);
	font-size: 21px;
	font-weight: 600;
	margin: 8px 0 8px;
}

.nvrs-step p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--nvrs-ink-soft);
}

/* ---------------------------------------------------------------- uses */

.nvrs-uses {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
	gap: 20px 26px;
}

.nvrs-use h3 {
	font-family: var(--nvrs-display);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 6px;
	padding-top: 14px;
	border-top: 2px solid var(--nvrs-gold);
}

.nvrs-use p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--nvrs-ink-soft);
}

/* ---------------------------------------------------------------- looks */

.nvrs-land__looks {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
	gap: 9px;
}

.nvrs-look {
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	padding: 13px 15px;
	background: var(--nvrs-card);
	transition: border-color 0.15s, transform 0.15s;
}

.nvrs-look:hover {
	border-color: var(--nvrs-gold);
	transform: translateY(-2px);
}

.nvrs-look__name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 2px;
}

.nvrs-look__blurb {
	display: block;
	font-size: 12px;
	line-height: 1.4;
	color: var(--nvrs-ink-soft);
}

/* ---------------------------------------------------------------- wall */

.nvrs-land__wall {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 12px;
}

.nvrs-land__tile {
	margin: 0;
	border-radius: var(--nvrs-r-sm);
	overflow: hidden;
	border: 1px solid var(--nvrs-line);
	background: var(--nvrs-card);
}

.nvrs-land__tile img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

/* ---------------------------------------------------------------- privacy */

.nvrs-privacy {
	max-width: 68ch;
}

.nvrs-privacy__list {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nvrs-privacy__list li {
	position: relative;
	padding-left: 26px;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--nvrs-ink-soft);
}

.nvrs-privacy__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 11px;
	height: 6px;
	border-left: 2px solid var(--nvrs-teal);
	border-bottom: 2px solid var(--nvrs-teal);
	transform: rotate(-45deg);
}

/* ---------------------------------------------------------------- prices */

.nvrs-land__prices {
	max-width: 620px;
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r);
	overflow: hidden;
	background: var(--nvrs-card);
}

.nvrs-priceline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--nvrs-line);
}

.nvrs-priceline:last-child { border-bottom: none; }

.nvrs-priceline.is-featured {
	background: color-mix(in srgb, var(--nvrs-gold) 9%, transparent);
}

.nvrs-priceline__name {
	display: block;
	font-size: 15.5px;
	font-weight: 700;
}

.nvrs-priceline__meta {
	display: block;
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
	margin-top: 2px;
}

.nvrs-priceline__amount {
	font-family: var(--nvrs-display);
	font-size: 27px;
	letter-spacing: -0.015em;
}

/* ---------------------------------------------------------------- faq */

.nvrs-faq {
	max-width: 74ch;
	border-top: 1px solid var(--nvrs-line);
}

.nvrs-faq__item {
	border-bottom: 1px solid var(--nvrs-line);
}

.nvrs-faq__q {
	list-style: none;
	cursor: pointer;
	padding: 18px 34px 18px 0;
	position: relative;
	font-size: 16.5px;
	font-weight: 700;
	color: var(--nvrs-ink);
}

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

.nvrs-faq__q::after {
	content: '';
	position: absolute;
	right: 6px;
	top: 26px;
	width: 9px;
	height: 9px;
	border-right: 1.8px solid var(--nvrs-ink-soft);
	border-bottom: 1.8px solid var(--nvrs-ink-soft);
	transform: rotate(45deg);
	transition: transform 0.2s;
}

.nvrs-faq__item[open] .nvrs-faq__q::after {
	transform: rotate(-135deg);
	top: 30px;
}

.nvrs-faq__a {
	padding: 0 34px 20px 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--nvrs-ink-soft);
	max-width: 68ch;
}

/* ---------------------------------------------------------------- close */

.nvrs-land__close {
	text-align: center;
	padding: clamp(46px, 8vw, 104px) clamp(18px, 4vw, 48px);
	border-top: 1px solid var(--nvrs-line);
}

.nvrs-land__close .nvrs-land__h2 {
	max-width: 20ch;
	margin: 0 auto 26px;
}

@media (max-width: 860px) {
	.nvrs-land__hero {
		grid-template-columns: minmax(0, 1fr);
	}
	.nvrs-land__art {
		order: -1;
		max-width: 420px;
	}
}

/* A button with nowhere to go should look inert, not clickable. */
.nvrs-btn.is-dead {
	opacity: 0.45;
	cursor: not-allowed;
}

.nvrs-land__warn {
	margin: 0 0 22px;
	padding: 11px 14px;
	border-radius: var(--nvrs-r-sm);
	border: 1px dashed var(--nvrs-gold);
	background: color-mix(in srgb, var(--nvrs-gold) 10%, transparent);
	font-size: 13px;
	line-height: 1.5;
	color: var(--nvrs-ink);
	max-width: 56ch;
}

.nvrs-land__warn a {
	color: var(--nvrs-teal);
}

/* ================================================================
 * v3.2: buttons, referral dashboard
 * ============================================================= */

/* Buttons get a considered resting state, a real press, and a focus ring
   that is visible without being ugly. */
.nvrs-btn {
	position: relative;
	isolation: isolate;
	border: 1px solid transparent;
	letter-spacing: -0.005em;
	text-align: center;
	white-space: nowrap;
	transition:
		background-color 0.18s cubic-bezier(0.2, 0.9, 0.3, 1),
		border-color 0.18s,
		box-shadow 0.18s,
		transform 0.12s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.nvrs-btn--primary {
	background: var(--nvrs-teal);
	color: #fff;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.14),
		0 4px 14px color-mix(in srgb, var(--nvrs-teal) 32%, transparent),
		inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.nvrs-btn--primary:hover:not(:disabled):not(.is-dead) {
	background: color-mix(in srgb, var(--nvrs-teal) 88%, #fff);
	transform: translateY(-1px);
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.16),
		0 10px 26px color-mix(in srgb, var(--nvrs-teal) 40%, transparent),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nvrs-btn--primary:active:not(:disabled):not(.is-dead) {
	transform: translateY(0.5px);
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.2),
		inset 0 1px 3px rgba(0, 0, 0, 0.18);
}

.nvrs-btn--ghost-ink {
	background: color-mix(in srgb, var(--nvrs-ink) 4%, transparent);
	border-color: var(--nvrs-line);
	color: var(--nvrs-ink);
}

.nvrs-btn--ghost-ink:hover {
	background: color-mix(in srgb, var(--nvrs-teal) 10%, transparent);
	border-color: var(--nvrs-teal);
	color: var(--nvrs-teal);
	transform: translateY(-1px);
}

.nvrs-btn:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 2px var(--nvrs-paper),
		0 0 0 4px var(--nvrs-teal);
}

.nvrs-btn--big {
	border-radius: 999px;
	font-weight: 700;
}

/* A quiet arrow that leans forward on hover. */
.nvrs-btn--big.nvrs-btn--primary::after {
	content: '\2192';
	display: inline-block;
	margin-left: 8px;
	transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.nvrs-btn--big.nvrs-btn--primary:hover::after {
	transform: translateX(3px);
}

.nvrs-btn.is-dead::after {
	content: none;
}

/* ---------------------------------------------------------------- referral */

.nvrs-copyfield {
	display: flex;
	gap: 8px;
	max-width: 620px;
	margin-bottom: 14px;
}

.nvrs-copyfield input {
	flex: 1 1 auto;
	min-width: 0;
	border: 1px solid var(--nvrs-line);
	border-radius: 999px;
	background: var(--nvrs-card);
	color: var(--nvrs-ink);
	padding: 12px 18px;
	font-family: var(--nvrs-mono);
	font-size: 13px;
	text-overflow: ellipsis;
}

.nvrs-copyfield input:focus {
	outline: none;
	border-color: var(--nvrs-teal);
}

.nvrs-copyfield .nvrs-btn {
	flex: 0 0 auto;
}

.nvrs-share {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.nvrs-share__btn {
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--nvrs-ink-soft);
	border: 1px solid var(--nvrs-line);
	border-radius: 999px;
	padding: 7px 15px;
	transition: border-color 0.15s, color 0.15s;
}

.nvrs-share__btn:hover {
	border-color: var(--nvrs-teal);
	color: var(--nvrs-teal);
}

/* ================================================================
 * v3.3: theme effects, aurora treatment, promo banner
 * ============================================================= */

/* Themes ship their tokens inline, so the only thing left here is what a
   theme does beyond colour. */

/* ---------------------------------------------------------------- glow */

/* Aurora and Halloween both ask for light behind the surface. */
.nvrs[data-effect="glow"] {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.nvrs[data-effect="glow"]::before {
	content: '';
	position: absolute;
	inset: -30% -10% auto -10%;
	height: 70%;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(42% 60% at 18% 0%, color-mix(in srgb, var(--nvrs-glow-a, var(--nvrs-teal)) 34%, transparent), transparent 70%),
		radial-gradient(38% 56% at 78% 6%, color-mix(in srgb, var(--nvrs-glow-b, var(--nvrs-gold)) 28%, transparent), transparent 72%),
		radial-gradient(30% 46% at 50% 0%, color-mix(in srgb, var(--nvrs-glow-c, var(--nvrs-teal)) 20%, transparent), transparent 74%);
	filter: blur(28px);
	opacity: 0.85;
	animation: nvrs-drift 22s ease-in-out infinite alternate;
}

@keyframes nvrs-drift {
	0%   { transform: translate3d(-3%, 0, 0) scale(1); }
	100% { transform: translate3d(3%, 4%, 0) scale(1.08); }
}

/* Glass card edges, the thing that makes this style read as premium. */
.nvrs[data-effect="glow"] .nvrs-panel,
.nvrs[data-effect="glow"] .nvrs-recipes,
.nvrs[data-effect="glow"] .nvrs-proof,
.nvrs[data-effect="glow"] .nvrs-sheet,
.nvrs[data-effect="glow"] .nvrs-pack,
.nvrs[data-effect="glow"] .nvrs-step,
.nvrs[data-effect="glow"] .nvrs-metric {
	background: color-mix(in srgb, var(--nvrs-card) 82%, transparent);
	backdrop-filter: blur(14px) saturate(1.25);
	border-color: color-mix(in srgb, var(--nvrs-ink) 12%, transparent);
	box-shadow:
		inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent),
		0 18px 44px rgba(0, 0, 0, 0.42);
}

/* Gradient primary button, the OpenArt signature move. */
.nvrs[data-effect="glow"] .nvrs-btn--primary {
	background-image: linear-gradient(
		100deg,
		var(--nvrs-glow-a, var(--nvrs-teal)),
		var(--nvrs-glow-b, var(--nvrs-gold))
	);
	border-color: transparent;
	box-shadow:
		0 2px 10px color-mix(in srgb, var(--nvrs-glow-a, var(--nvrs-teal)) 38%, transparent),
		0 10px 34px color-mix(in srgb, var(--nvrs-glow-b, var(--nvrs-gold)) 26%, transparent),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nvrs[data-effect="glow"] .nvrs-btn--primary:hover:not(:disabled):not(.is-dead) {
	filter: brightness(1.08);
	box-shadow:
		0 3px 14px color-mix(in srgb, var(--nvrs-glow-a, var(--nvrs-teal)) 48%, transparent),
		0 16px 46px color-mix(in srgb, var(--nvrs-glow-b, var(--nvrs-gold)) 34%, transparent),
		inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.nvrs[data-effect="glow"] .nvrs-land__h1,
.nvrs[data-effect="glow"] .nvrs-bar__title {
	background: linear-gradient(
		96deg,
		var(--nvrs-ink),
		color-mix(in srgb, var(--nvrs-glow-a, var(--nvrs-teal)) 62%, var(--nvrs-ink))
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nvrs[data-effect="glow"] .nvrs-tool.is-active,
.nvrs[data-effect="glow"] .nvrs-style.is-active,
.nvrs[data-effect="glow"] .nvrs-engine.is-active {
	border-color: color-mix(in srgb, var(--nvrs-glow-a, var(--nvrs-teal)) 60%, transparent);
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--nvrs-glow-a, var(--nvrs-teal)) 26%, transparent);
}

/* ---------------------------------------------------------------- particles */

.nvrs-particles {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.nvrs-particles span {
	position: absolute;
	top: -8%;
	display: block;
	will-change: transform;
	animation: nvrs-fall linear infinite;
}

@keyframes nvrs-fall {
	0% {
		transform: translate3d(0, -10%, 0) rotate(0deg);
		opacity: 0;
	}
	8% { opacity: 1; }
	92% { opacity: 1; }
	100% {
		transform: translate3d(var(--drift, 20px), 108vh, 0) rotate(var(--spin, 220deg));
		opacity: 0;
	}
}

/* Snow */
.nvrs[data-effect="snow"] .nvrs-particles span {
	width: var(--size, 6px);
	height: var(--size, 6px);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
	opacity: 0.85;
}

/* Hearts */
.nvrs[data-effect="hearts"] .nvrs-particles span {
	width: var(--size, 10px);
	height: var(--size, 10px);
	background: var(--nvrs-teal);
	opacity: 0.55;
	transform-origin: center;
	clip-path: path('M10 17s-6.5-4.35-8.5-8A5 5 0 0 1 10 4a5 5 0 0 1 8.5 5c-2 3.65-8.5 8-8.5 8z');
}

/* Confetti */
.nvrs[data-effect="confetti"] .nvrs-particles span {
	width: var(--size, 7px);
	height: calc(var(--size, 7px) * 0.45);
	border-radius: 1px;
	background: var(--colour, var(--nvrs-gold));
	opacity: 0.9;
}

/* Sparkle sits still and twinkles rather than falling. */
.nvrs[data-effect="sparkle"] .nvrs-particles span {
	top: auto;
	width: var(--size, 3px);
	height: var(--size, 3px);
	border-radius: 50%;
	background: var(--nvrs-gold);
	box-shadow: 0 0 8px var(--nvrs-gold);
	animation: nvrs-twinkle var(--dur, 3s) ease-in-out infinite;
}

@keyframes nvrs-twinkle {
	0%, 100% { opacity: 0.15; transform: scale(0.7); }
	50%      { opacity: 1; transform: scale(1.3); }
}

/* ---------------------------------------------------------------- promo */

.nvrs-promo {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 12px 16px;
	margin-bottom: var(--nvrs-gap, 18px);
	border-radius: var(--nvrs-r-sm);
	border: 1px solid color-mix(in srgb, var(--nvrs-gold) 55%, transparent);
	background: color-mix(in srgb, var(--nvrs-gold) 12%, transparent);
	font-size: 14px;
	position: relative;
	z-index: 1;
}

.nvrs-promo__text {
	font-weight: 700;
	color: var(--nvrs-ink);
}

.nvrs-promo__code {
	font-family: var(--nvrs-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	padding: 5px 12px;
	border-radius: 6px;
	border: 1px dashed var(--nvrs-gold);
	background: transparent;
	color: var(--nvrs-gold);
	cursor: copy;
	transition: background 0.15s, color 0.15s;
}

.nvrs-promo__code:hover {
	background: var(--nvrs-gold);
	color: var(--nvrs-paper);
}

.nvrs-promo__link {
	font-family: var(--nvrs-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nvrs-teal);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.nvrs-promo__x {
	margin-left: auto;
	background: transparent;
	border: none;
	color: var(--nvrs-ink-soft);
	font-size: 20px;
	line-height: 1;
	padding: 0 4px;
	cursor: pointer;
}

.nvrs-promo__x:hover {
	color: var(--nvrs-ink);
}

@media (prefers-reduced-motion: reduce) {
	.nvrs-particles { display: none; }
	.nvrs[data-effect="glow"]::before { animation: none; }
}

/* ================================================================
 * v3.4: cash payouts
 * ============================================================= */

.nvrs-cashbox {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: 20px;
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r);
	padding: 22px 24px;
	margin-bottom: 18px;
}

.nvrs-cashbox__label {
	display: block;
	font-family: var(--nvrs-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nvrs-ink-soft);
	margin-bottom: 4px;
}

.nvrs-cashbox__amount {
	display: block;
	font-family: var(--nvrs-display);
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1;
	letter-spacing: -0.025em;
	color: var(--nvrs-ink);
	margin-bottom: 14px;
	font-variant-numeric: tabular-nums;
}

.nvrs-progress {
	height: 7px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--nvrs-ink) 12%, transparent);
	overflow: hidden;
	margin-bottom: 8px;
}

.nvrs-progress span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--nvrs-teal), var(--nvrs-gold));
	transition: width 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.nvrs-cashbox__hint {
	font-size: 12.5px;
	color: var(--nvrs-ink-soft);
}

.nvrs-cashbox__side {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	padding-left: 20px;
	border-left: 1px solid var(--nvrs-line);
}

.nvrs-cashbox__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
	font-size: 13px;
	color: var(--nvrs-ink-soft);
	border-bottom: 1px solid color-mix(in srgb, var(--nvrs-line) 55%, transparent);
}

.nvrs-cashbox__row:last-child { border-bottom: none; }

.nvrs-cashbox__row strong {
	color: var(--nvrs-ink);
	font-variant-numeric: tabular-nums;
}

.nvrs-payout {
	margin-bottom: 22px;
}

.nvrs-payout__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

@media (max-width: 760px) {
	.nvrs-cashbox {
		grid-template-columns: minmax(0, 1fr);
	}
	.nvrs-cashbox__side {
		padding-left: 0;
		border-left: none;
		border-top: 1px solid var(--nvrs-line);
		padding-top: 12px;
	}
}

/* ================================================================
 * v3.5: licence keys
 * ============================================================= */

.nvrs-licence__offer {
	max-width: 420px;
	margin-top: 22px;
}

.nvrs-keys {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 12px;
	margin-bottom: 18px;
}

.nvrs-keycard {
	position: relative;
	background: var(--nvrs-card);
	border: 1px solid var(--nvrs-line);
	border-radius: var(--nvrs-r-sm);
	padding: 16px 18px;
}

.nvrs-keycard__status {
	position: absolute;
	top: 14px;
	right: 16px;
	font-family: var(--nvrs-mono);
	font-size: 9.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 2px 9px;
	border-radius: 999px;
	border: 1px solid currentColor;
	color: var(--nvrs-ink-soft);
}

.nvrs-keycard__status.is-active    { color: var(--nvrs-good); }
.nvrs-keycard__status.is-past_due  { color: var(--nvrs-gold); }
.nvrs-keycard__status.is-cancelled,
.nvrs-keycard__status.is-suspended { color: var(--nvrs-danger); }

.nvrs-keycard__key {
	display: block;
	font-family: var(--nvrs-mono);
	font-size: 14px;
	letter-spacing: 0.06em;
	color: var(--nvrs-ink);
	margin: 4px 0 8px;
	word-break: break-all;
}

.nvrs-keycard__meta {
	margin: 0;
	font-size: 12px;
	color: var(--nvrs-ink-soft);
}

/* ---------------------------------------------------------------- licence tiers */

.nvrs-licence__tiers {
	margin-top: 22px;
}

.nvrs-truecost {
	max-width: 68ch;
	margin-top: 26px;
	padding: 18px 20px;
	border: 1px solid var(--nvrs-line);
	border-left: 3px solid var(--nvrs-gold);
	border-radius: var(--nvrs-r-sm);
	background: var(--nvrs-card);
}

.nvrs-truecost h4 {
	font-family: var(--nvrs-display);
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px;
}

.nvrs-truecost p {
	margin: 0 0 10px;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--nvrs-ink-soft);
}

.nvrs-truecost p:last-child { margin-bottom: 0; }

/* ================================================================
 * v3.7: the staging demonstration in the hero
 * ============================================================= */

.nvrs-demo__frame {
	position: relative;
	aspect-ratio: 4 / 5;
	max-height: 62vh;
	border-radius: var(--nvrs-r);
	overflow: hidden;
	padding: 26px 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6%;
	background:
		radial-gradient(120% 80% at 50% 4%, rgba(255, 255, 255, 0.1), transparent 62%),
		linear-gradient(180deg, var(--nvrs-stage-2), var(--nvrs-stage));
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.nvrs-demo__row {
	position: relative;
	border-radius: 10px;
	padding: 22px 8px 10px;
	border: 1px dashed transparent;
	transition: border-color 0.3s, background 0.3s;
}

/* The back row is the one the cursor drops into, so it lights up on cue. */
.nvrs-demo__row--back {
	animation: nvrs-demo-target 9s ease-in-out infinite;
}

@keyframes nvrs-demo-target {
	0%, 40%, 72%, 100% { background: transparent; border-color: transparent; }
	48%, 66%           { background: rgba(95, 179, 166, 0.12); border-color: rgba(95, 179, 166, 0.45); }
}

.nvrs-demo__tag {
	position: absolute;
	left: 10px;
	top: 6px;
	font-family: var(--nvrs-mono);
	font-size: 9.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.42);
}

.nvrs-demo__people {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 4%;
}

.nvrs-demo__person {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
}

.nvrs-demo__row--back .nvrs-demo__person { width: 24%; }
.nvrs-demo__row--front .nvrs-demo__person { width: 27%; }

.nvrs-demo__face {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
	background: linear-gradient(150deg, #6d6478, #443f4d);
}

.nvrs-demo__face img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nvrs-demo__row--back .nvrs-demo__face {
	opacity: 0.92;
}

.nvrs-demo__name {
	font-family: var(--nvrs-mono);
	font-size: 9.5px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.88);
	background: rgba(0, 0, 0, 0.45);
	padding: 2px 8px;
	border-radius: 999px;
	white-space: nowrap;
}

/* The one being demonstrated lifts as though picked up. */
.nvrs-demo__person.is-lift {
	animation: nvrs-demo-lift 9s ease-in-out infinite;
	position: relative;
	z-index: 3;
}

@keyframes nvrs-demo-lift {
	0%, 34%   { transform: translate3d(0, 0, 0) scale(1); }
	42%       { transform: translate3d(0, -6px, 0) scale(1.06); }
	56%       { transform: translate3d(6%, -62px, 0) scale(1.06); }
	66%       { transform: translate3d(6%, -62px, 0) scale(1.02); }
	78%, 100% { transform: translate3d(0, 0, 0) scale(1); }
}

.nvrs-demo__person.is-lift .nvrs-demo__face {
	animation: nvrs-demo-lift-shadow 9s ease-in-out infinite;
}

@keyframes nvrs-demo-lift-shadow {
	0%, 34%, 78%, 100% { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45); border-color: rgba(255, 255, 255, 0.85); }
	42%, 66%           { box-shadow: 0 20px 34px rgba(0, 0, 0, 0.6); border-color: var(--nvrs-gold); }
}

.nvrs-demo__floor {
	position: absolute;
	left: 8%;
	right: 8%;
	bottom: 13%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

/* Cursor */

.nvrs-demo__cursor {
	position: absolute;
	left: 34%;
	bottom: 26%;
	display: flex;
	align-items: flex-start;
	gap: 3px;
	pointer-events: none;
	z-index: 4;
	animation: nvrs-demo-cursor 9s ease-in-out infinite;
}

@keyframes nvrs-demo-cursor {
	0%        { transform: translate3d(40px, 40px, 0); opacity: 0; }
	22%       { transform: translate3d(0, 0, 0); opacity: 1; }
	42%       { transform: translate3d(0, -6px, 0); opacity: 1; }
	56%, 66%  { transform: translate3d(6%, -62px, 0); opacity: 1; }
	78%       { transform: translate3d(0, 0, 0); opacity: 1; }
	92%, 100% { transform: translate3d(40px, 40px, 0); opacity: 0; }
}

.nvrs-demo__cursor-tip {
	font-family: var(--nvrs-mono);
	font-size: 8.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1a1a1a;
	background: var(--nvrs-gold);
	padding: 2px 6px;
	border-radius: 4px;
	margin-top: 12px;
	animation: nvrs-demo-tip 9s ease-in-out infinite;
}

@keyframes nvrs-demo-tip {
	0%, 34%   { opacity: 0; }
	40%, 68%  { opacity: 1; }
	76%, 100% { opacity: 0; }
}

/* Legend */

.nvrs-demo__legend {
	margin-top: 14px;
}

.nvrs-demo__legend p {
	margin: 0 0 6px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--nvrs-ink-soft);
}

.nvrs-demo__legend strong {
	color: var(--nvrs-ink);
	font-weight: 700;
}

.nvrs-demo__note {
	font-size: 12px !important;
	padding-top: 6px;
	border-top: 1px solid var(--nvrs-line);
	margin-top: 10px !important;
}

@media (prefers-reduced-motion: reduce) {
	.nvrs-demo__row--back,
	.nvrs-demo__person.is-lift,
	.nvrs-demo__person.is-lift .nvrs-demo__face,
	.nvrs-demo__cursor,
	.nvrs-demo__cursor-tip {
		animation: none;
	}
	.nvrs-demo__cursor { opacity: 1; }
}
