/* Pro app — FAZ 4 Kazanç Merkezi (premium gold) */

.ns-pro-html,
.ns-pro-body {
	margin: 0;
	min-height: 100dvh;
	background: var(--nx-bg, #08080a);
	color: var(--nx-text, #f8f6ef);
	font-family: "Segoe UI", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.ns-pro-app {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 100dvh;
	background:
		radial-gradient(ellipse 80% 40% at 50% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
		var(--nx-bg);
}

.ns-pro-glass {
	background: rgba(16, 16, 22, 0.62);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--nx-border);
	border-radius: 16px;
}

.ns-pro-kicker {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--nx-accent);
}

.ns-pro-section-head {
	margin: 2rem 0 1rem;
}

.ns-pro-section-head h2 {
	margin: 0;
	font-size: 1.2rem;
}

.ns-pro-section-head p {
	margin: 0.4rem 0 0;
	color: var(--nx-muted);
	font-size: 0.88rem;
}

.ns-pro-section-head--center {
	text-align: center;
}

/* Sidebar */
.ns-pro-sidebar {
	display: none;
	padding: 1.25rem 1rem;
	border-right: 1px solid var(--nx-border);
}

.ns-pro-sidebar--sticky {
	position: sticky;
	top: 80px;
	align-self: start;
	max-height: calc(100dvh - 96px);
	overflow-y: auto;
}

.ns-pro-sidebar__home {
	display: inline-block;
	margin-bottom: 1rem;
	color: var(--nx-muted);
	text-decoration: none;
	font-size: 0.82rem;
}

.ns-pro-sidebar__brand {
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--nx-accent);
	margin-bottom: 1rem;
}

.ns-pro-sidebar__nav {
	display: grid;
	gap: 0.3rem;
}

.ns-pro-sidebar__nav a {
	padding: 0.5rem 0.7rem;
	border-radius: 8px;
	color: var(--nx-muted);
	text-decoration: none;
	font-size: 0.88rem;
}

.ns-pro-sidebar__nav a.is-active,
.ns-pro-sidebar__nav a:hover {
	background: var(--nx-accent-soft);
	color: var(--nx-accent);
}

.ns-pro-main {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

/* Header */
.ns-pro-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var(--nx-border);
}

.ns-pro-site-header__inner {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem clamp(0.75rem, 3vw, 1.25rem);
}

.ns-pro-site-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: inherit;
}

.ns-pro-site-header__logo {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.08));
	border: 1px solid rgba(212, 175, 55, 0.35);
	color: var(--nx-accent);
	font-weight: 800;
}

.ns-pro-site-header__stack { display: grid; gap: 0.05rem; }
.ns-pro-site-header__name { font-weight: 800; letter-spacing: 0.06em; }
.ns-pro-site-header__tagline { font-size: 0.68rem; color: var(--nx-muted); }

.ns-pro-site-header__nav {
	display: none;
	flex: 1;
	justify-content: center;
	gap: 0.15rem;
}

.ns-pro-site-header__link {
	padding: 0.45rem 0.65rem;
	border-radius: 999px;
	color: var(--nx-muted);
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 600;
}

.ns-pro-site-header__link:hover,
.ns-pro-site-header__link.is-active {
	background: var(--nx-accent-soft);
	color: var(--nx-accent);
}

.ns-pro-site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-left: auto;
}

.ns-pro-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 1px solid var(--nx-border);
	background: rgba(0, 0, 0, 0.35);
	color: var(--nx-text);
	cursor: pointer;
}

.ns-pro-site-header__burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 38px;
	height: 38px;
	border: 1px solid var(--nx-border);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
	cursor: pointer;
}

.ns-pro-site-header__burger span {
	display: block;
	width: 16px;
	height: 2px;
	margin: 0 auto;
	background: var(--nx-text);
}

/* Drawer */
.ns-pro-drawer[hidden] { display: none; }
.ns-pro-drawer__overlay {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(0, 0, 0, 0.55);
}
.ns-pro-drawer__overlay[hidden] { display: none; }
.ns-pro-drawer__panel {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 95;
	width: min(88vw, 320px);
	height: 100dvh;
	padding: 1rem;
	background: rgba(8, 8, 10, 0.96);
	border-left: 1px solid var(--nx-border);
}
.ns-pro-drawer__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}
.ns-pro-drawer__close {
	width: 36px;
	height: 36px;
	border: 1px solid var(--nx-border);
	border-radius: 10px;
	background: transparent;
	color: var(--nx-text);
	cursor: pointer;
}
.ns-pro-drawer__nav { display: grid; gap: 0.25rem; }
.ns-pro-drawer__link {
	display: block;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	color: var(--nx-muted);
	text-decoration: none;
	font-weight: 600;
}
.ns-pro-drawer__link.is-active,
.ns-pro-drawer__link:hover {
	background: var(--nx-accent-soft);
	color: var(--nx-accent);
}

body.ns-pro-drawer-open { overflow: hidden; }

/* Content */
.ns-pro-content {
	padding: 1rem clamp(1rem, 4vw, 2rem) 2.5rem;
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}

/* Hero */
.ns-pro-hero {
	padding: clamp(1.5rem, 5vw, 2.5rem);
	margin-bottom: 1rem;
}

.ns-pro-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 5vw, 2.6rem);
	line-height: 1.1;
}

.ns-pro-hero__lead {
	margin: 0 0 1.25rem;
	max-width: 52ch;
	color: var(--nx-muted);
	line-height: 1.6;
}

.ns-pro-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

/* Buttons */
.ns-pro-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.15rem;
	border-radius: 12px;
	border: 0;
	font: inherit;
	font-weight: 700;
	font-size: 0.88rem;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ns-pro-btn--primary {
	background: linear-gradient(135deg, #e6c86e, #b8942e);
	color: #1a1508;
	box-shadow: 0 10px 28px rgba(212, 175, 55, 0.25);
}

.ns-pro-btn--ghost {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--nx-border);
	color: var(--nx-text);
}

.ns-pro-btn--sm { padding: 0.45rem 0.85rem; font-size: 0.8rem; }

.ns-pro-btn:hover { transform: translateY(-1px); }

.ns-pro-link {
	color: var(--nx-accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.85rem;
}

/* Wallet */
.ns-pro-wallet {
	padding: 1.25rem;
	margin-bottom: 1rem;
}

.ns-pro-wallet h2 { margin: 0 0 0.85rem; font-size: 1rem; }

.ns-pro-wallet__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
}

.ns-pro-wallet__stat {
	padding: 0.75rem;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.25);
	text-align: center;
}

.ns-pro-wallet__stat span {
	display: block;
	font-size: 0.72rem;
	color: var(--nx-muted);
	margin-bottom: 0.25rem;
}

.ns-pro-wallet__stat strong {
	font-size: 1.1rem;
	color: var(--nx-accent);
}

/* Services */
.ns-pro-services__grid {
	display: grid;
	gap: 0.85rem;
}

.ns-pro-service-card {
	padding: 1.1rem;
}

.ns-pro-service-card h3 { margin: 0 0 0.45rem; font-size: 1rem; }
.ns-pro-service-card p { margin: 0 0 0.65rem; color: var(--nx-muted); font-size: 0.88rem; }

/* Store */
.ns-pro-store__slider { padding-bottom: 2rem; }

.ns-pro-store__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

.ns-pro-product {
	padding: 1rem;
	display: grid;
	gap: 0.45rem;
	height: 100%;
}

.ns-pro-product__thumb {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 10px;
}

.ns-pro-product h3 { margin: 0; font-size: 0.95rem; }
.ns-pro-product p { margin: 0; color: var(--nx-muted); font-size: 0.82rem; }

.ns-pro-product__price {
	display: flex;
	gap: 0.5rem;
	font-size: 0.82rem;
	color: var(--nx-accent);
	font-weight: 700;
}

/* Pricing */
.ns-pro-pricing__grid {
	display: grid;
	gap: 0.85rem;
}

.ns-pro-price-card {
	padding: 1.25rem;
	display: grid;
	gap: 0.65rem;
}

.ns-pro-price-card.is-featured {
	border-color: rgba(212, 175, 55, 0.45);
	box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.ns-pro-price-card h3 { margin: 0; }
.ns-pro-price-card__amount strong { font-size: 1.75rem; color: var(--nx-accent); }
.ns-pro-price-card__amount span { display: block; font-size: 0.82rem; color: var(--nx-muted); }
.ns-pro-price-card__excerpt { margin: 0; color: var(--nx-muted); font-size: 0.88rem; }

.ns-pro-price-card__features {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--nx-muted);
	font-size: 0.85rem;
}

/* Sponsors */
.ns-pro-sponsors__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.ns-pro-sponsor {
	display: grid;
	place-items: center;
	gap: 0.45rem;
	padding: 1rem;
	text-decoration: none;
	color: inherit;
	min-height: 100px;
}

.ns-pro-sponsor img {
	max-width: 100%;
	max-height: 48px;
	object-fit: contain;
}

.ns-pro-sponsor__mark {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: var(--nx-accent-soft);
	color: var(--nx-accent);
	font-weight: 800;
}

.ns-pro-sponsor__name { font-size: 0.82rem; color: var(--nx-muted); }

/* Donate */
.ns-pro-donate { padding: 1.25rem; }

.ns-pro-donate__amounts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.85rem;
}

.ns-pro-donate__preset {
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	border: 1px solid var(--nx-border);
	background: rgba(255, 255, 255, 0.03);
	color: var(--nx-text);
	cursor: pointer;
}

.ns-pro-donate__field {
	display: grid;
	gap: 0.35rem;
	margin-bottom: 0.75rem;
}

.ns-pro-donate__field input,
.ns-pro-donate__field textarea,
.ns-pro-career-form input,
.ns-pro-career-form textarea,
.ns-pro-career-form select {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border-radius: 10px;
	border: 1px solid var(--nx-border);
	background: rgba(0, 0, 0, 0.3);
	color: var(--nx-text);
	font: inherit;
}

.ns-pro-donate__status.is-error { color: #ff6b6b; }

/* Career */
.ns-pro-career__roles {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.ns-pro-career-role { padding: 1rem; }
.ns-pro-career-role h3 { margin: 0 0 0.35rem; }
.ns-pro-career-role p { margin: 0; color: var(--nx-muted); font-size: 0.88rem; }

.ns-pro-career-form,
.ns-pro-career-status {
	padding: 1.25rem;
	display: grid;
	gap: 0.75rem;
}

.ns-pro-career-status.is-success { border-color: rgba(80, 200, 120, 0.35); }
.ns-pro-career-status.is-pending { border-color: rgba(212, 175, 55, 0.35); }

/* Affiliate */
.ns-pro-affiliate__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
	margin-bottom: 1rem;
}

.ns-pro-affiliate-card {
	padding: 0.85rem;
	text-align: center;
}

.ns-pro-affiliate-card span { display: block; font-size: 0.72rem; color: var(--nx-muted); }
.ns-pro-affiliate-card strong { font-size: 1.05rem; color: var(--nx-accent); }

.ns-pro-affiliate__link {
	display: grid;
	gap: 0.5rem;
	padding: 1rem;
}

.ns-pro-affiliate__link input { width: 100%; }

/* Single */
.ns-pro-single { padding: 1.5rem; }
.ns-pro-single__title { margin: 0 0 0.5rem; }
.ns-pro-single__price { display: flex; gap: 0.75rem; color: var(--nx-accent); font-weight: 700; }
.ns-pro-single__content { margin: 1rem 0 1.25rem; line-height: 1.65; color: var(--nx-muted); }

.ns-pro-booking { padding: 1.5rem 0; max-width: 560px; }
.ns-pro-booking__login { margin-bottom: 1rem; color: var(--ns-pro-muted, #9a9a9a); }
.ns-pro-booking-form { padding: 1.25rem; display: grid; gap: 0.85rem; text-align: left; }
.ns-pro-booking__status { margin: 0; font-size: 0.88rem; }
.ns-pro-booking__status.is-error { color: #ff6b6b; }

/* Footer */
.ns-pro-footer {
	margin-top: auto;
	padding: 2rem clamp(1rem, 4vw, 2rem) 1.5rem;
	border-top: 1px solid var(--nx-border);
}

.ns-pro-footer__grid {
	display: grid;
	gap: 1.25rem;
	max-width: 960px;
	margin: 0 auto 1rem;
}

.ns-pro-footer__logo {
	display: inline-block;
	margin-bottom: 0.45rem;
	font-weight: 800;
	color: var(--nx-accent);
	text-decoration: none;
}

.ns-pro-footer__col h4 {
	margin: 0 0 0.5rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.ns-pro-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}

.ns-pro-footer__col a {
	color: var(--nx-muted);
	text-decoration: none;
	font-size: 0.85rem;
}

.ns-pro-footer__col a:hover { color: var(--nx-accent); }

.ns-pro-footer__copy {
	margin: 0;
	text-align: center;
	font-size: 0.74rem;
	color: var(--nx-muted);
}

@media (min-width: 640px) {
	.ns-pro-services__grid { grid-template-columns: repeat(2, 1fr); }
	.ns-pro-pricing__grid { grid-template-columns: repeat(3, 1fr); }
	.ns-pro-sponsors__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
	.ns-pro-app { grid-template-columns: 220px 1fr; }
	.ns-pro-sidebar { display: block; }
	.ns-pro-site-header__nav { display: flex; }
	.ns-pro-site-header__burger { display: none; }
	.ns-pro-store__grid { grid-template-columns: repeat(3, 1fr); }
	.ns-pro-footer__grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 899px) {
	.ns-pro-site-header__tagline { display: none; }
	.ns-pro-wallet__grid { grid-template-columns: 1fr; }
	.ns-pro-affiliate__grid { grid-template-columns: 1fr; }
	.ns-pro-checkout { grid-template-columns: 1fr; }
}

/* FAZ 4 — cart, checkout, top-up, multi-step career */
.ns-pro-btn--block { width: 100%; justify-content: center; }

.ns-pro-cart { display: grid; gap: 1rem; }
.ns-pro-cart__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.ns-pro-cart__item { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.75rem; align-items: center; padding: 0.85rem; }
.ns-pro-cart__thumb { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.ns-pro-cart__type { display: block; font-size: 0.72rem; color: var(--nx-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.ns-pro-cart__price { display: flex; gap: 0.5rem; font-size: 0.82rem; color: var(--nx-accent); }
.ns-pro-cart__remove { border: 0; background: transparent; color: var(--nx-muted); font-size: 1.4rem; cursor: pointer; }
.ns-pro-cart__summary { padding: 1rem; }
.ns-pro-cart__totals { display: grid; gap: 0.5rem; margin: 0.75rem 0 1rem; }
.ns-pro-cart__totals div { display: flex; justify-content: space-between; }
.ns-pro-cart-empty { padding: 1.5rem; text-align: center; }
.ns-pro-cart-empty__actions { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

.ns-pro-checkout { display: grid; gap: 1rem; }
@media (min-width: 900px) {
	.ns-pro-checkout { grid-template-columns: 1fr 1fr; }
}
.ns-pro-checkout__order,
.ns-pro-checkout__methods { padding: 1.25rem; }
.ns-pro-checkout__items { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.45rem; }
.ns-pro-checkout__items li { display: flex; justify-content: space-between; gap: 0.75rem; font-size: 0.88rem; }
.ns-pro-checkout__totals { display: grid; gap: 0.45rem; padding-top: 0.75rem; border-top: 1px solid var(--nx-border); }
.ns-pro-checkout__totals div { display: flex; justify-content: space-between; }
.ns-pro-checkout__balances { font-size: 0.85rem; color: var(--nx-muted); }
.ns-pro-checkout__tabs { display: flex; gap: 0.35rem; flex-wrap: wrap; margin: 0.75rem 0; }
.ns-pro-checkout__tabs button { border: 1px solid var(--nx-border); background: transparent; color: var(--nx-text); border-radius: 999px; padding: 0.35rem 0.75rem; cursor: pointer; font-size: 0.78rem; }
.ns-pro-checkout__tabs button.is-active { border-color: var(--nx-accent); color: var(--nx-accent); }
.ns-pro-checkout__panel { font-size: 0.88rem; color: var(--nx-muted); margin-bottom: 1rem; }
.ns-pro-checkout__status.is-error,
.ns-pro-topup__status.is-error,
.ns-pro-donate__status.is-error { color: #ff6b6b; }

.ns-pro-banks { display: grid; gap: 0.65rem; margin-top: 0.75rem; }
.ns-pro-bank-card { padding: 0.85rem; border: 1px solid var(--nx-border); border-radius: 12px; background: rgba(0,0,0,0.2); }
.ns-pro-bank-card code { display: block; margin-top: 0.35rem; font-size: 0.78rem; color: var(--nx-accent); word-break: break-all; }

.ns-pro-topup { margin-top: 2rem; padding: 1.25rem; }
.ns-pro-topup__form { display: grid; gap: 0.75rem; max-width: 420px; }
.ns-pro-topup__presets,
.ns-pro-donate__amounts { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.ns-pro-topup__preset,
.ns-pro-donate__preset { border: 1px solid var(--nx-border); background: transparent; color: var(--nx-text); border-radius: 999px; padding: 0.35rem 0.7rem; cursor: pointer; }
.ns-pro-donate__tabs { display: flex; gap: 0.35rem; margin-bottom: 0.75rem; }
.ns-pro-donate__tabs button { border: 1px solid var(--nx-border); background: transparent; color: var(--nx-text); border-radius: 999px; padding: 0.35rem 0.75rem; cursor: pointer; }
.ns-pro-donate__tabs button.is-active { border-color: var(--nx-accent); color: var(--nx-accent); }
.ns-pro-donate__topup-link { margin-top: 0.75rem; font-size: 0.85rem; }
.ns-pro-wallet__topup { display: inline-block; margin-top: 0.75rem; color: var(--nx-accent); text-decoration: none; font-size: 0.82rem; }

.ns-pro-steps { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.ns-pro-steps span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--nx-border); font-size: 0.78rem; color: var(--nx-muted); }
.ns-pro-steps span.is-active { border-color: var(--nx-accent); color: var(--nx-accent); }
.ns-pro-steps span.is-done { background: rgba(212,175,55,0.15); border-color: var(--nx-accent); }
.ns-pro-career-step h3 { margin: 0 0 0.75rem; font-size: 1rem; }
.ns-pro-career-form__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.ns-pro-career-review { padding: 0.85rem; border: 1px dashed var(--nx-border); border-radius: 12px; margin-bottom: 0.75rem; font-size: 0.88rem; }

.ns-pro-toast {
	position: fixed;
	left: 50%;
	bottom: 1.25rem;
	transform: translate(-50%, 12px);
	padding: 0.65rem 1rem;
	border-radius: 999px;
	background: rgba(16,16,22,0.92);
	border: 1px solid var(--nx-border);
	color: var(--nx-text);
	opacity: 0;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 9999;
}
.ns-pro-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.ns-pro-toast.is-error { border-color: #ff6b6b; color: #ffb4b4; }
.ns-pro-cart-link { text-decoration: none; color: inherit; }

/* ── FAZ 3: SaaS catalog, dock, checkout, sponsors ── */
.ns-pro-catalog__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
}

.ns-pro-saas-card {
	position: relative;
	display: grid;
	gap: 0;
	border-radius: 18px;
	overflow: hidden;
	transform-style: preserve-3d;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ns-pro-saas-card.is-featured {
	border-color: rgba(212, 175, 55, 0.45);
	box-shadow: 0 16px 40px rgba(212, 175, 55, 0.12);
}

.ns-pro-saas-card__badge {
	position: absolute;
	top: 0.65rem;
	left: 0.65rem;
	z-index: 2;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.55);
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ns-pro-saas-card__media {
	display: block;
	min-height: 140px;
	background-size: cover;
	background-position: center;
}

.ns-pro-saas-card__media--empty {
	background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(0, 0, 0, 0.45));
}

.ns-pro-saas-card__body {
	padding: 1rem;
	display: grid;
	gap: 0.55rem;
}

.ns-pro-saas-card__price strong {
	font-size: 1.15rem;
	color: var(--nx-accent);
}

.ns-pro-bottom-dock {
	margin-top: 1.25rem;
}

.ns-pro-bottom-dock__grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 900px) {
	.ns-pro-bottom-dock__grid {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}
}

.ns-pro-wallet--compact,
.ns-pro-donate--compact {
	height: 100%;
}

.ns-pro-sponsors--landing {
	margin: 1.5rem 0;
}

.ns-pro-checkout-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.ns-pro-checkout-trust span {
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	border: 1px solid rgba(61, 214, 140, 0.35);
	color: #8dffb8;
	font-size: 0.72rem;
}

.ns-pro-checkout__secure-note {
	margin-top: 0.65rem;
	font-size: 0.78rem;
	color: var(--nx-muted);
	text-align: center;
}

.ns-pro-ad-order {
	padding: 1rem;
	margin-bottom: 1rem;
}

.ns-pro-ad-order__field {
	display: grid;
	gap: 0.35rem;
	margin-bottom: 0.75rem;
}

.ns-pro-ad-order__field input,
.ns-pro-ad-order__field textarea {
	padding: 0.55rem 0.7rem;
	border-radius: 10px;
	border: 1px solid var(--nx-border);
	background: rgba(0, 0, 0, 0.35);
	color: var(--nx-text);
	font: inherit;
}

.ns-pro-bank-card__logo {
	display: block;
	max-height: 28px;
	margin-bottom: 0.45rem;
}

.ns-pro-banks__loading,
.ns-pro-banks__empty {
	color: var(--nx-muted);
	font-size: 0.85rem;
}

/* ── Master update: premium sponsors + cinematic hero ── */
.ns-pro-sponsors__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	flex-wrap: wrap;
}

.ns-pro-sponsors__head p {
	margin: 0;
	max-width: 28rem;
	color: var(--nx-muted);
	font-size: 0.85rem;
}

.ns-pro-sponsors__grid {
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
}

.ns-pro-sponsor--premium {
	position: relative;
	padding: 1.25rem 1rem 1rem;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ns-pro-sponsor--premium:hover {
	transform: translateY(-6px) perspective(800px) rotateX(4deg);
	box-shadow: 0 0 0 1px rgba(230, 0, 0, 0.45), 0 18px 40px rgba(230, 0, 0, 0.18);
}

.ns-pro-sponsor__glow {
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(230, 0, 0, 0.35), transparent 55%);
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.ns-pro-sponsor--premium:hover .ns-pro-sponsor__glow { opacity: 1; }

.ns-pro-sponsor__frame {
	position: relative;
	z-index: 1;
	min-height: 72px;
	display: grid;
	place-items: center;
}

.ns-pro-sponsor__frame img {
	max-height: 56px;
}

.ns-pro-sponsor__badge {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin-top: 0.55rem;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(230, 0, 0, 0.15);
	color: var(--nx-accent);
}

.ns-pro-sponsor__name {
	position: relative;
	z-index: 1;
	display: block;
	margin-top: 0.35rem;
	font-size: 0.88rem;
	color: var(--nx-text);
}

.ns-pro-hero--cinematic {
	position: relative;
	overflow: hidden;
	padding: clamp(2rem, 6vw, 3.5rem) clamp(1rem, 4vw, 2rem);
}

.ns-pro-hero__backdrop {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ns-pro-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.55;
}

.ns-pro-hero__orb--1 {
	width: 320px;
	height: 320px;
	top: -20%;
	left: -8%;
	background: rgba(230, 0, 0, 0.35);
}

.ns-pro-hero__orb--2 {
	width: 260px;
	height: 260px;
	bottom: -25%;
	right: -5%;
	background: rgba(120, 0, 0, 0.35);
}

.ns-pro-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(circle at 50% 40%, #000 15%, transparent 75%);
}

.ns-pro-hero__inner {
	position: relative;
	z-index: 1;
	padding: clamp(1.25rem, 4vw, 2rem);
	border-radius: 18px;
}

.ns-pro-hero__title {
	font-size: clamp(2rem, 6vw, 3.4rem);
	font-weight: 800;
	letter-spacing: -0.03em;
}
