/* ==========================================================================
   VELVET PAGES — internal page design layer
   Loads after views.css / pages.css / about.css (which are pushed to
   @stack('styles') at the end of <body>), so this is the last word on every
   internal page.

   Purpose: the home page was rebuilt around one visual language — 26px cards,
   gradient action bars, velvet focus rings, gradient rules under headings —
   while the internal pages still carried the older, flatter card-and-hairline
   treatment. This sheet carries that language across the catalogue, course
   detail, auth, cart, checkout, order, database, top-up, FAQ and instructor
   pages so the site reads as one product.
   ========================================================================== */

/* ==========================================================================
   1. SHARED PRIMITIVES
   ========================================================================== */

/* --- breadcrumb band: same aurora construction as the hero --- */
.pcrumb {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(760px 380px at 82% 10%, rgba(123, 44, 191, .5) 0%, transparent 62%),
		linear-gradient(150deg, var(--royal-velvet-1) 0%, #1b0442 55%, var(--royal-velvet-1) 100%);
}

.pcrumb__glow {
	background: var(--royal-velvet-3);
	opacity: .4;
}

.pcrumb__title {
	font-family: var(--ab-head);
	color: #fff;
}

.pcrumb__desc {
	color: var(--ab-on-dark);
}

.pcrumb__trail li a {
	border-radius: 999px;
	border: 1px solid rgba(199, 125, 255, .24);
	background: rgba(199, 125, 255, .07);
	color: var(--ab-on-dark);
	transition: background .24s, border-color .24s, color .24s;
}

.pcrumb__trail li a:hover {
	background: var(--ab-grad);
	border-color: transparent;
	color: #fff !important;
}

.pcrumb__current {
	color: var(--royal-velvet-4);
}

.pcrumb__mark {
	background: rgba(199, 125, 255, .12);
	border: 1px solid rgba(199, 125, 255, .26);
	color: var(--royal-velvet-4);
}

.pcrumb__mark-ring {
	border-color: rgba(199, 125, 255, .28);
}

/* --- section heading rule, shared by every internal page --- */
.vx-toolbar__title,
.vx-panel__title,
.px-panel__title,
.px-block__title,
.cart-section-title {
	font-family: var(--ab-head);
	color: var(--ab-ink);
}

.vx-toolbar__eyebrow,
.px-rail__eyebrow,
.tconsole__eyebrow {
	color: var(--royal-velvet-3);
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 700;
}

.vx-hero__kicker-bar,
.px-rail__eyebrow-bar {
	background: var(--ab-grad);
}

/* ==========================================================================
   2. CATALOGUE — course cards, filters, pager
   ========================================================================== */
.vx-card {
	border-radius: 26px;
	border-color: var(--rv-line);
	box-shadow: 0 1px 2px rgba(16, 0, 43, .04);
	transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s, border-color .35s;
}

.vx-card:hover {
	transform: translateY(-8px);
	border-color: var(--royal-velvet-4);
	box-shadow: 0 40px 80px -40px rgba(16, 0, 43, .45);
}

.vx-card__media {
	position: relative;
	background: var(--rv-tint);
}

/* scrim so the badge stays legible on pale artwork */
.vx-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(16, 0, 43, .42) 100%);
	pointer-events: none;
}

.vx-card__media img {
	transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.vx-card:hover .vx-card__media img {
	transform: scale(1.07);
}

.vx-card__badge {
	z-index: 1;
	background: var(--ab-grad);
	color: #fff;
	backdrop-filter: none;
	box-shadow: 0 10px 22px -10px rgba(123, 44, 191, .9);
}

.vx-card__title {
	transition: color .25s;
}

.vx-card:hover .vx-card__title {
	color: var(--royal-velvet-3);
}

/* footer becomes one tinted bar that fills with the brand gradient on hover,
   matching the home-page course card */
.vx-card__foot {
	margin-top: auto;
	padding: 13px 16px;
	border-top: 0;
	border-radius: 15px;
	background: var(--rv-tint);
	transition: background .35s, box-shadow .35s;
}

.vx-card:hover .vx-card__foot {
	background: var(--ab-grad);
	box-shadow: var(--ab-glow);
}

.vx-card__price-num {
	color: var(--royal-velvet-3);
	transition: color .35s;
}

.vx-card__price-label {
	color: var(--ab-muted);
	transition: color .35s;
}

.vx-card:hover .vx-card__price-num,
.vx-card:hover .vx-card__price-label {
	color: #fff;
}

.vx-card__go {
	width: 34px;
	height: 34px;
	background: rgba(123, 44, 191, .12);
	color: var(--royal-velvet-3);
	transition: background .35s, color .35s, transform .3s;
}

.vx-card:hover .vx-card__go {
	background: rgba(255, 255, 255, .22);
	color: #fff;
	transform: translateX(4px);
}

.vx-card__fallback {
	background: var(--rv-tint);
	color: var(--royal-velvet-4);
}

/* --- filter chips --- */
.vx-chip {
	border-radius: 999px;
	border: 1px solid var(--rv-line);
	background: #fff;
	color: var(--ab-ink);
	font-weight: 600;
	transition: background .25s, border-color .25s, color .25s, transform .25s, box-shadow .25s;
}

.vx-chip:hover {
	border-color: var(--royal-velvet-4);
	color: var(--royal-velvet-3);
	transform: translateY(-2px);
}

.vx-chip.is-active,
.vx-chip[aria-current="true"] {
	background: var(--ab-grad);
	border-color: transparent;
	color: #fff;
	box-shadow: var(--ab-glow);
}

.vx-toolbar__count-num {
	font-family: var(--ab-head);
	color: var(--royal-velvet-3);
}

/* --- pagination, shared with .dbx__pager --- */
.vx-pager a,
.vx-pager span,
.pagination a,
.pagination span,
.dbx__pager a,
.dbx__pager span {
	border-radius: 12px;
	border: 1px solid var(--rv-line);
	color: var(--ab-ink);
	transition: background .24s, border-color .24s, color .24s;
}

.vx-pager a:hover,
.pagination a:hover,
.dbx__pager a:hover {
	background: var(--rv-tint);
	border-color: var(--royal-velvet-4);
	color: var(--royal-velvet-3);
}

.vx-pager .is-active,
.vx-pager .active span,
.pagination .active span,
.pagination li.active a,
.dbx__pager .is-active {
	background: var(--ab-grad);
	border-color: transparent;
	color: #fff;
	box-shadow: var(--ab-glow);
}

/* ==========================================================================
   3. COURSE DETAIL — hero, cover, levels, specs
   ========================================================================== */
.vx-hero {
	position: relative;
	overflow: hidden;
}

.vx-hero__title {
	font-family: var(--ab-head);
}

.vx-glow--a,
.vx-glow--b {
	background: var(--royal-velvet-3);
}

.vx-cover__frame {
	border-radius: 28px;
	border: 1px solid var(--rv-line);
	box-shadow: 0 40px 90px -45px rgba(16, 0, 43, .5);
}

.vx-cover__price {
	background: var(--ab-grad);
	color: #fff;
	box-shadow: var(--ab-glow);
}

.vx-cover__price-num,
.vx-cover__price-label {
	color: #fff;
}

.vx-cover__thumbs img {
	border-radius: 14px;
	border: 2px solid transparent;
	transition: border-color .25s, transform .25s;
}

.vx-cover__thumbs img:hover,
.vx-cover__thumbs img.is-active {
	border-color: var(--royal-velvet-4);
	transform: translateY(-2px);
}

/* level cards read as a ladder — active step carries the gradient bar */
.vx-level {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	border: 1.5px solid var(--rv-line);
	background: #fff;
	transition: transform .3s, box-shadow .3s, border-color .3s;
}

.vx-level::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--rv-line);
	transition: background .3s;
}

.vx-level:hover,
.vx-level.is-active {
	border-color: var(--royal-velvet-4);
	transform: translateY(-5px);
	box-shadow: 0 30px 60px -30px rgba(123, 44, 191, .45);
}

.vx-level:hover::before,
.vx-level.is-active::before {
	background: var(--ab-grad);
}

.vx-level__num {
	background: var(--rv-tint);
	color: var(--royal-velvet-3);
	border-radius: 12px;
	font-weight: 750;
}

.vx-level:hover .vx-level__num,
.vx-level.is-active .vx-level__num {
	background: var(--ab-grad);
	color: #fff;
}

.vx-level__price-num {
	font-family: var(--ab-head);
	color: var(--royal-velvet-3);
}

.vx-spec {
	border-radius: 16px;
	border: 1px solid var(--rv-line);
	background: #fff;
	transition: border-color .25s, box-shadow .25s;
}

.vx-spec:hover {
	border-color: var(--royal-velvet-4);
	box-shadow: 0 16px 32px -20px rgba(123, 44, 191, .5);
}

.vx-spec__ico {
	background: var(--ab-grad);
	color: #fff;
	border-radius: 12px;
}

/* ==========================================================================
   4. PANELS, TABLES, STATUS, EMPTY STATES
   ========================================================================== */
.vx-panel,
.px-panel,
.px-block,
.vx-doc__sheet,
.vx-doc__card {
	border-radius: 26px;
}

.vx-panel {
	border: 1px solid var(--rv-line);
	background: #fff;
	box-shadow: 0 1px 2px rgba(16, 0, 43, .04);
}

.vx-panel__ico,
.px-block__num,
.px-info__ico {
	background: var(--ab-grad);
	color: #fff;
	border-radius: 13px;
}

.vx-table th,
.dbx__table th {
	background: var(--rv-tint);
	color: var(--royal-velvet-2);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--rv-line);
}

.vx-table tbody tr,
.dbx__row {
	border-bottom: 1px solid var(--rv-line);
	transition: background .2s;
}

.vx-table tbody tr:hover,
.dbx__row:hover {
	background: var(--rv-wash);
}

.vx-table__price,
.dbx__row-price {
	font-weight: 700;
	color: var(--royal-velvet-3);
}

.vx-table__ref,
.vx-mono {
	font-variant-numeric: tabular-nums;
	color: var(--ab-slate);
}
.px-mono {
	font-variant-numeric: tabular-nums;
	color: var(#ffffff);
}

/* status pills */
.vx-status {
	border-radius: 999px;
	font-weight: 650;
	letter-spacing: .04em;
}

.vx-status--success {
	background: rgba(52, 168, 110, .12);
	color: #1e7a4d;
}

.vx-status--warning {
	background: rgba(199, 125, 255, .16);
	color: var(--royal-velvet-2);
}

.vx-status--danger {
	background: rgba(224, 76, 76, .12);
	color: #b3261e;
}

.vx-status--info,
.vx-status--neutral {
	background: var(--rv-tint);
	color: var(--royal-velvet-3);
}

/* empty states */
.vx-empty,
.px-empty,
.cart-empty-state,
.dbx__none {
	border-radius: 26px;
	border: 1px dashed var(--rv-line);
	background: var(--rv-wash);
}

.vx-empty__ico,
.px-empty__ico,
.cart-empty-state__icon-wrap {
	background: var(--ab-grad);
	color: #fff;
}

.vx-empty__title,
.px-empty__title,
.cart-empty-state__title {
	font-family: var(--ab-head);
	color: var(--ab-ink);
}

/* ==========================================================================
   5. FORMS & AUTH
   ========================================================================== */
.px-label {
	font-weight: 650;
	color: var(--ab-ink);
	letter-spacing: .01em;
}

.px-input,
.px-control,
.dbx__search input {
	border: 1.5px solid var(--rv-line);
	border-radius: 14px;
	background: var(--rv-wash);
	color: var(--ab-ink);
	transition: border-color .22s, box-shadow .22s, background .22s;
}

.px-input:focus,
.px-control:focus,
.dbx__search input:focus {
	border-color: var(--royal-velvet-4);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(199, 125, 255, .16);
}

.px-input::placeholder {
	color: var(--ab-muted);
}

.px-hint,
.px-note {
	color: var(--ab-muted);
}

.px-error {
	color: #b3261e;
}

.px-req {
	color: var(--royal-velvet-3);
}

.px-link,
.cart-continue-link {
	color: var(--royal-velvet-3);
	font-weight: 650;
}

.px-link:hover,
.cart-continue-link:hover {
	color: var(--royal-velvet-2);
}

/* Primary actions across every internal page.
   pages.css / views.css qualify these with the element (`button.px-btn--go`,
   0,1,1) and arctic-pages.css scopes the cart buttons under `.page-cart`
   (0,2,0), so a bare class here would lose. Each selector below is repeated at
   the weight it has to beat. */
.px-btn--go,
button.px-btn--go,
a.px-btn--go,
.vx-btn--go,
button.vx-btn--go,
a.vx-btn--go,
.vx-btn--mint,
button.vx-btn--mint,
.ordr__btn--go,
a.ordr__btn--go,
.page-cart .cart-action-btn--primary,
.page-cart .cart-action-btn--checkout,
.cart-action-btn--primary,
.cart-action-btn--checkout,
.dbx__panel-cta,
.page-database .dbx__panel-cta,
.px-receipt__submit,
button.px-receipt__submit {
	background: var(--ab-grad);
	border: 0;
	color: #fff;
	box-shadow: var(--ab-glow);
	transition: transform .25s, filter .25s, box-shadow .25s;
}

.px-btn--go:hover,
button.px-btn--go:hover,
a.px-btn--go:hover,
.vx-btn--go:hover,
button.vx-btn--go:hover,
a.vx-btn--go:hover,
.vx-btn--mint:hover,
button.vx-btn--mint:hover,
.ordr__btn--go:hover,
a.ordr__btn--go:hover,
.page-cart .cart-action-btn--primary:hover,
.page-cart .cart-action-btn--checkout:hover,
.cart-action-btn--primary:hover,
.cart-action-btn--checkout:hover,
.dbx__panel-cta:hover,
.page-database .dbx__panel-cta:hover,
.px-receipt__submit:hover,
button.px-receipt__submit:hover {
	background: var(--ab-grad);
	color: #fff;
	transform: translateY(-2px);
	filter: brightness(1.08);
	box-shadow: 0 24px 48px -20px rgba(123, 44, 191, .95);
}

.px-btn--ghost,
button.px-btn--ghost,
a.px-btn--ghost,
.vx-btn--ghost,
button.vx-btn--ghost,
a.vx-btn--ghost,
.ordr__btn--ghost,
a.ordr__btn--ghost,
.dbx__add,
.page-database .dbx__add {
	border: 1.5px solid var(--rv-line);
	background: #fff;
	color: var(--ab-ink);
	transition: border-color .25s, color .25s, background .25s;
}

.px-btn--ghost:hover,
button.px-btn--ghost:hover,
a.px-btn--ghost:hover,
.vx-btn--ghost:hover,
button.vx-btn--ghost:hover,
a.vx-btn--ghost:hover,
.ordr__btn--ghost:hover,
a.ordr__btn--ghost:hover,
.dbx__add:hover,
.page-database .dbx__add:hover {
	border-color: var(--royal-velvet-4);
	background: var(--rv-tint);
	color: var(--royal-velvet-3);
}

/* auth split-screen rail */
.px-rail {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(620px 340px at 78% 12%, rgba(123, 44, 191, .55) 0%, transparent 62%),
		linear-gradient(160deg, var(--royal-velvet-1) 0%, #1b0442 52%, var(--royal-velvet-1) 100%);
	color: #fff;
}

.px-rail__title {
	font-family: var(--ab-head);
	color: #fff;
}

.px-rail__lede,
.px-rail__point-desc {
	color: var(--ab-on-dark);
}

.px-rail__brand b,
.px-rail__point-title {
	color: #fff;
}

.px-rail__badge,
.px-rail__tag {
	background: rgba(199, 125, 255, .14);
	border: 1px solid rgba(199, 125, 255, .28);
	color: var(--royal-velvet-5);
}

.px-rail__point-mark {
	background: var(--ab-grad);
	color: #fff;
	border-radius: 13px;
}

.px-rail__foot {
	color: var(--ab-on-dark-soft);
	border-top: 1px solid var(--ab-hairline);
}

.px-form-side__title {
	font-family: var(--ab-head);
	color: var(--ab-ink);
}

.px-form-side__sub {
	color: var(--ab-slate);
}

.px-divider::before,
.px-divider::after {
	background: var(--rv-line);
}

.px-check__box {
	border: 1.5px solid var(--rv-line);
	border-radius: 6px;
}

.px-check__row input:checked + .px-check__box,
.px-switch input:checked + span {
	background: var(--ab-grad);
	border-color: transparent;
}

/* ==========================================================================
   6. CART / CHECKOUT / WALLET
   ========================================================================== */
.cart-item-card,
.px-row-item {
	border-radius: 22px;
	border: 1px solid var(--rv-line);
	background: #fff;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.cart-item-card:hover,
.px-row-item:hover {
	border-color: var(--royal-velvet-4);
	box-shadow: 0 24px 50px -30px rgba(16, 0, 43, .4);
	transform: translateY(-2px);
}

.cart-item-card__media,
.px-row-item__index {
	border-radius: 16px;
}

.cart-item-card__badge,
.px-row-item__type,
.px-tag {
	background: var(--rv-tint);
	color: var(--royal-velvet-3);
	border-radius: 999px;
	font-weight: 650;
}

.cart-item-card__price-value,
.cart-item-card__credits-amount,
.px-row-item__cost-num,
.px-wallet__value {
	font-family: var(--ab-head);
	color: var(--royal-velvet-3);
}

.cart-item-card__remove,
.px-row-item__remove {
	color: var(--ab-muted);
	transition: color .2s, background .2s;
}

.cart-item-card__remove:hover,
.px-row-item__remove:hover {
	color: #b3261e;
	background: rgba(224, 76, 76, .1);
}

.cart-sidebar,
.px-receipt,
.px-wallet {
	border-radius: 26px;
	border: 1px solid var(--rv-line);
	background: #fff;
	box-shadow: 0 30px 70px -45px rgba(16, 0, 43, .35);
}

.cart-sidebar__header,
.px-receipt__inner > .px-receipt__label:first-child {
	border-bottom: 1px solid var(--rv-line);
}

.cart-sidebar__title,
.px-receipt__total-value {
	font-family: var(--ab-head);
	color: var(--ab-ink);
}

.cart-sidebar__row-value {
	font-weight: 650;
	color: var(--ab-ink);
}
.px-receipt__value {
	font-weight: 650;
	color: #ffffff;
}

.cart-sidebar__trust-icon-wrap,
.px-receipt__assure i {
	background: var(--ab-grad);
	color: #fff;
}

.px-meter {
	background: var(--rv-line);
	border-radius: 999px;
	overflow: hidden;
}

.px-meter__fill {
	background: var(--ab-grad);
}

.cart-glow,
.cart-glow-mint,
.cart-glow-sky,
.px-page__glow--a,
.px-page__glow--b {
	background: var(--royal-velvet-3);
}

/* ==========================================================================
   7. ORDER RESULT
   ========================================================================== */
.ordr__band {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(620px 320px at 80% 10%, rgba(123, 44, 191, .5) 0%, transparent 62%),
		linear-gradient(150deg, var(--royal-velvet-1) 0%, #1b0442 55%, var(--royal-velvet-1) 100%);
	color: #fff;
}

.ordr__band-glow {
	background: var(--royal-velvet-3);
}

.ordr__band-title {
	font-family: var(--ab-head);
	color: #fff;
}

.ordr__band-text {
	color: var(--ab-on-dark);
}

.ordr__pill {
	background: rgba(199, 125, 255, .16);
	border: 1px solid rgba(199, 125, 255, .3);
	color: var(--royal-velvet-5);
}

.ordr__shell,
.ordr__record {
	border-radius: 26px;
	border: 1px solid var(--rv-line);
	background: #fff;
}

.ordr__row {
	border-bottom: 1px solid var(--rv-line);
}

.ordr__row--total .ordr__value--total {
	font-family: var(--ab-head);
	color: var(--royal-velvet-3);
}

.ordr__value--code {
	font-variant-numeric: tabular-nums;
	color: var(--royal-velvet-2);
}

.ordr__steps-num {
	background: var(--ab-grad);
	color: #fff;
	border-radius: 50%;
}

.ordr__dot {
	background: var(--royal-velvet-4);
}

/* ==========================================================================
   8. TOP-UP CONSOLE PAGE
   Mirrors the home-page calculator: one velvet console rather than a light
   panel with a dark sidebar.
   ========================================================================== */
.page-topup .tconsole__deck {
	border-radius: 32px;
	border: 1px solid rgba(199, 125, 255, .2);
	background: linear-gradient(150deg, #1c0745 0%, var(--royal-velvet-1) 100%);
	box-shadow: 0 50px 110px -50px rgba(16, 0, 43, .9);
	color: #fff;
}

.page-topup .tconsole__glow,
.page-topup .tconsole__glow--a,
.page-topup .tconsole__glow--b {
	background: var(--royal-velvet-3);
}

.page-topup .tconsole__title {
	font-family: var(--ab-head);
	color: #fff;
}

.page-topup .tconsole__lede {
	color: var(--ab-on-dark);
}

.page-topup .tconsole__input {
	border: 2px solid rgba(199, 125, 255, .24);
	border-radius: 20px;
	background: rgba(16, 0, 43, .5);
	color: #fff;
}

.page-topup .tconsole__input:focus-within,
.page-topup .tconsole__amount:focus {
	border-color: var(--royal-velvet-4);
	box-shadow: 0 0 0 5px rgba(199, 125, 255, .14);
	outline: 0;
}

.page-topup .tconsole__amount {
	background: none;
	border: 0;
	color: #fff;
}

.page-topup .tconsole__sym,
.page-topup .tconsole__op,
.page-topup .tconsole__multi {
	color: var(--royal-velvet-4);
}

.page-topup .tconsole__readout-item {
	border-radius: 14px;
	border: 1px solid var(--ab-hairline);
	background: rgba(199, 125, 255, .08);
	color: var(--ab-on-dark);
}

.page-topup .tconsole__out {
	background: var(--ab-grad);
	border-color: transparent;
	color: #fff;
	box-shadow: var(--ab-glow);
}

.page-topup .tconsole__cell-label {
	color: var(--ab-on-dark-soft);
}

.page-topup .tconsole__go {
	background: var(--ab-grad);
	border: 0;
	color: #fff;
	box-shadow: var(--ab-glow);
	transition: transform .25s, filter .25s;
}

.page-topup .tconsole__go:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
}

.page-topup .tconsole__go-ico {
	background: rgba(255, 255, 255, .22);
	color: #fff;
}

/* tier ladder */
.page-topup .tconsole__node {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	border: 1.5px solid var(--rv-line);
	background: #fff;
	transition: transform .3s, box-shadow .3s, border-color .3s;
}

.page-topup .tconsole__node::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--rv-line);
	transition: background .3s;
}

.page-topup .tconsole__node:hover,
.page-topup .tconsole__node.is-active,
.page-topup .tconsole__node.timeline-step-highlight {
	border-color: var(--royal-velvet-4);
	transform: translateY(-6px);
	box-shadow: 0 30px 60px -30px rgba(123, 44, 191, .5);
}

.page-topup .tconsole__node:hover::before,
.page-topup .tconsole__node.is-active::before,
.page-topup .tconsole__node.timeline-step-highlight::before {
	background: var(--ab-grad);
}

.page-topup .tconsole__node-multi {
	font-family: var(--ab-head);
	color: var(--royal-velvet-3);
}

.page-topup .tconsole__node-mark,
.page-topup .tconsole__node-dot {
	background: var(--ab-grad);
	color: #fff;
}

.page-topup .tconsole__node-range {
	color: var(--royal-velvet-3);
	font-weight: 650;
}

.page-topup .tconsole__perk {
	border-radius: 999px;
	border: 1px solid var(--rv-line);
	background: #fff;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.page-topup .tconsole__perk:hover {
	border-color: var(--royal-velvet-4);
	box-shadow: 0 16px 32px -18px rgba(123, 44, 191, .55);
	transform: translateY(-2px);
}

.page-topup .tconsole__perk-ico {
	background: var(--ab-grad);
	color: #fff;
	border-radius: 50%;
}

.page-topup .tconsole__track-title {
	font-family: var(--ab-head);
	color: var(--ab-ink);
}

/* ==========================================================================
   9. FAQ + INSTRUCTORS
   ========================================================================== */
.faq-section .accordion-wrapper {
	border-radius: 20px;
	border: 1px solid var(--rv-line);
	background: #fff;
	overflow: hidden;
	transition: border-color .25s, box-shadow .25s;
}

.faq-section .accordion-wrapper:hover,
.faq-section .accordion-wrapper.is-open {
	border-color: var(--royal-velvet-4);
	box-shadow: 0 20px 44px -28px rgba(123, 44, 191, .45);
}

.faq-section .accordion-title,
.faq-section .accordion-link {
	font-weight: 650;
	color: var(--ab-ink);
}

.faq-section .accordion-link:hover,
.faq-section .accordion-wrapper.is-open .accordion-title {
	color: var(--royal-velvet-3);
}

.faq-section .accordion-body {
	color: var(--ab-slate);
	border-top: 1px solid var(--rv-line);
}

.instructor-section .instructor-bio,
.instructor-detail-section .instructor-bio {
	border-radius: 26px;
	border: 1px solid var(--rv-line);
	background: #fff;
	overflow: hidden;
	transition: transform .3s, box-shadow .3s, border-color .3s;
}

.instructor-section .instructor-bio:hover {
	transform: translateY(-6px);
	border-color: var(--royal-velvet-4);
	box-shadow: 0 34px 70px -40px rgba(16, 0, 43, .45);
}

/* ==========================================================================
   10. DASHBOARD / ID CARD
   ========================================================================== */
.vx-idcard {
	border-radius: 26px;
	background: linear-gradient(150deg, var(--royal-velvet-3) 0%, var(--royal-velvet-2) 60%, var(--royal-velvet-1) 100%);
	color: #fff;
	box-shadow: 0 40px 80px -40px rgba(16, 0, 43, .7);
}

.vx-idcard__name,
.vx-idcard__balance-value {
	color: #fff;
	font-family: var(--ab-head);
}

.vx-idcard__balance-label,
.vx-idcard__since {
	color: rgba(255, 255, 255, .72);
}

.vx-idcard__avatar {
	background: rgba(255, 255, 255, .18);
	border: 1px solid rgba(255, 255, 255, .3);
	color: #fff;
}

.vx-idcard__topup {
	background: #fff;
	color: var(--royal-velvet-2);
	font-weight: 650;
	border-radius: 999px;
}

.vx-idcard__topup:hover {
	background: var(--royal-velvet-5);
	color: var(--royal-velvet-1);
}

.vx-navlink {
	border-radius: 14px;
	color: var(--ab-ink);
	transition: background .22s, color .22s;
}

.vx-navlink:hover,
.vx-navlink.is-active {
	background: var(--rv-tint);
	color: var(--royal-velvet-3);
}

.vx-navlink__num {
	color: var(--royal-velvet-4);
	font-weight: 700;
}

.vx-dash__logout {
	color: #b3261e;
}

/* ==========================================================================
   11. POLICY / DOC PAGES
   ========================================================================== */
.vx-doc__toc {
	border-radius: 22px;
	border: 1px solid var(--rv-line);
	background: var(--rv-wash);
}

.vx-doc__toc-label {
	color: var(--royal-velvet-3);
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 700;
}

.vx-doc__toc-list a {
	color: var(--ab-slate);
	transition: color .2s;
}

.vx-doc__toc-list a:hover {
	color: var(--royal-velvet-3);
}

.vx-doc__toc-num {
	color: var(--royal-velvet-4);
	font-weight: 700;
}

.vx-doc__sheet h2,
.vx-doc__section-head {
	font-family: var(--ab-head);
	color: var(--ab-ink);
}

.vx-doc__fact {
	border-radius: 16px;
	border: 1px solid var(--rv-line);
	background: #fff;
}

.vx-doc__foot {
	border-radius: 22px;
	background: linear-gradient(150deg, #1c0745, var(--royal-velvet-1));
	color: #fff;
}

.vx-doc__foot-title {
	font-family: var(--ab-head);
	color: #fff;
}

.vx-doc__foot-text {
	color: var(--ab-on-dark);
}

/* progress bar on long policy pages */
.vx-doc-progress {
	background: var(--ab-grad);
}

/* ==========================================================================
   COURSE DETAIL — csx-* (page-product_detail)
   A dossier for a security course: hero brief, editorial overview, and the
   four tiers as an ascending ladder on a gradient spine. Royal Velvet.
   ========================================================================== */
.page-product_detail .csx-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(48px, 6vw, 92px) 0 clamp(56px, 6vw, 104px);
	color: #fff;
	background:
		radial-gradient(900px 520px at 82% 8%, rgba(123, 44, 191, .5), transparent 62%),
		linear-gradient(160deg, var(--royal-velvet-1) 0%, #1b0442 50%, var(--royal-velvet-1) 100%);
}

.page-product_detail .csx-hero__grid-lines {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(199, 125, 255, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(199, 125, 255, .06) 1px, transparent 1px);
	background-size: 58px 58px;
	-webkit-mask-image: radial-gradient(circle at 70% 0%, #000, transparent 72%);
	mask-image: radial-gradient(circle at 70% 0%, #000, transparent 72%);
}

.page-product_detail .csx-hero__aura {
	position: absolute;
	z-index: -1;
	width: 460px;
	height: 460px;
	top: -180px;
	right: -80px;
	border-radius: 50%;
	background: var(--royal-velvet-3);
	opacity: .4;
	filter: blur(100px);
	pointer-events: none;
}

.page-product_detail .csx-hero__in {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(30px, 4.5vw, 68px);
	align-items: center;
}

.page-product_detail .csx-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	font-family: var(--ab-mono);
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--royal-velvet-5);
}

.page-product_detail .csx-eyebrow b {
	font-weight: 500;
	color: var(--royal-velvet-4);
}

.page-product_detail .csx-eyebrow b::after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 1px;
	margin-left: 12px;
	vertical-align: middle;
	background: linear-gradient(90deg, var(--royal-velvet-4), transparent);
}

.page-product_detail .csx-hero__title {
	margin: 0 0 20px;
	font-family: var(--ab-head);
	font-weight: 500;
	font-size: clamp(34px, 4.6vw, 60px);
	line-height: 1.04;
	letter-spacing: -.02em;
	color: #fff;
}

.page-product_detail .csx-hero__lede {
	margin: 0 0 30px;
	max-width: 52ch;
	font-size: 16.5px;
	line-height: 1.75;
	color: rgba(224, 170, 255, .82);
}

/* spec ledger — the pre-enrol facts, ruled like an index */
.page-product_detail .csx-ledger {
	margin: 0 0 32px;
	border-top: 1px solid rgba(199, 125, 255, .2);
}

.page-product_detail .csx-ledger__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding: 13px 2px;
	border-bottom: 1px solid rgba(199, 125, 255, .14);
}

.page-product_detail .csx-ledger__row dt {
	font-family: var(--ab-mono);
	font-size: 11.5px;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: rgba(224, 170, 255, .62);
	margin: 0;
}

.page-product_detail .csx-ledger__row dd {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-align: right;
}

.page-product_detail .csx-ledger__row dd i {
	color: var(--royal-velvet-4);
	font-size: 13px;
}

.page-product_detail .csx-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* buttons — shared by hero and ladder */
.page-product_detail .csx-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s, background .3s, border-color .3s;
}

.page-product_detail .csx-btn i {
	font-size: 12px;
	transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.page-product_detail .csx-btn--solid {
	background: var(--ab-grad);
	color: #fff;
	box-shadow: var(--ab-glow);
}

.page-product_detail .csx-btn--solid:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 44px -18px rgba(123, 44, 191, 1);
}

.page-product_detail .csx-btn--solid:hover i {
	transform: translateX(3px);
}

.page-product_detail .csx-hero .csx-btn--line {
	background: rgba(199, 125, 255, .08);
	border-color: rgba(199, 125, 255, .34);
	color: #fff;
	backdrop-filter: blur(10px);
}

.page-product_detail .csx-hero .csx-btn--line:hover {
	background: rgba(199, 125, 255, .18);
	border-color: var(--royal-velvet-4);
}

/* cover */
.page-product_detail .csx-hero__media {
	position: relative;
}

.page-product_detail .csx-cover {
	position: relative;
	margin: 0;
	border-radius: 28px;
	overflow: hidden;
	border: 1px solid rgba(199, 125, 255, .24);
	box-shadow: 0 50px 100px -50px rgba(16, 0, 43, 1);
	aspect-ratio: 4 / 3.3;
}

.page-product_detail .csx-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-product_detail .csx-cover__price {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 13px 18px;
	border-radius: 16px;
	background: rgba(16, 0, 43, .66);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(199, 125, 255, .26);
}

.page-product_detail .csx-cover__price-label {
	font-family: var(--ab-mono);
	font-size: 10.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--royal-velvet-4);
}

.page-product_detail .csx-cover__price-num {
	font-family: var(--ab-head);
	font-size: 26px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
}

.page-product_detail .csx-cover__price-num span {
	font-family: var(--ab-mono);
	font-size: 10px;
	letter-spacing: .1em;
	color: rgba(224, 170, 255, .7);
	margin-left: 5px;
}

.page-product_detail .csx-cover__thumbs {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.page-product_detail .csx-cover__thumbs img {
	width: 72px;
	height: 54px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(199, 125, 255, .22);
	opacity: .72;
	transition: opacity .3s, transform .3s;
}

.page-product_detail .csx-cover__thumbs img:hover {
	opacity: 1;
	transform: translateY(-3px);
}

/* ---------- overview ---------- */
.page-product_detail .csx-brief {
	background: var(--ab-wash);
	padding: clamp(56px, 7vw, 104px) 0;
}

.page-product_detail .csx-brief__in {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: clamp(28px, 5vw, 72px);
}

.page-product_detail .csx-brief__aside {
	position: sticky;
	top: 110px;
	align-self: start;
}

.page-product_detail .csx-brief__label {
	font-family: var(--ab-mono);
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--royal-velvet-3);
}

.page-product_detail .csx-brief__rule {
	display: block;
	width: 46px;
	height: 2px;
	margin: 16px 0;
	border-radius: 2px;
	background: var(--ab-grad);
}

.page-product_detail .csx-brief__note {
	margin: 0;
	font-size: 13px;
	color: var(--ab-muted);
}

.page-product_detail .csx-brief__body p {
	margin: 0 0 22px;
	font-size: 17px;
	line-height: 1.85;
	color: var(--ab-slate);
	max-width: 68ch;
}

.page-product_detail .csx-brief__body p:first-child::first-letter {
	float: left;
	font-family: var(--ab-head);
	font-size: 66px;
	line-height: .82;
	font-weight: 600;
	padding: 6px 14px 0 0;
	color: var(--royal-velvet-3);
}

/* ---------- learning path ladder ---------- */
.page-product_detail .csx-path {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(60px, 8vw, 116px) 0;
	color: #fff;
	background:
		radial-gradient(760px 460px at 12% 4%, rgba(123, 44, 191, .42), transparent 60%),
		linear-gradient(180deg, var(--royal-velvet-1) 0%, #16033a 60%, var(--royal-velvet-1) 100%);
}

.page-product_detail .csx-path__aura {
	position: absolute;
	z-index: -1;
	width: 420px;
	height: 420px;
	bottom: -160px;
	right: -120px;
	border-radius: 50%;
	background: var(--rv-mid);
	opacity: .3;
	filter: blur(110px);
}

.page-product_detail .csx-path__head {
	max-width: 640px;
	margin-bottom: clamp(40px, 5vw, 68px);
}

.page-product_detail .csx-path__badge {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(199, 125, 255, .12);
	border: 1px solid rgba(199, 125, 255, .28);
	font-family: var(--ab-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--royal-velvet-5);
}

.page-product_detail .csx-path__title {
	margin: 0 0 14px;
	font-family: var(--ab-head);
	font-weight: 500;
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1.05;
	letter-spacing: -.02em;
	color: #fff;
}

.page-product_detail .csx-path__lede {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(224, 170, 255, .78);
}

.page-product_detail .csx-ladder {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
}

/* each tier: a numbered node on a spine, then the card */
.page-product_detail .csx-step {
	position: relative;
	display: grid;
	grid-template-columns: 66px minmax(0, 1fr);
	gap: clamp(16px, 2.4vw, 34px);
	padding-bottom: clamp(20px, 3vw, 36px);
}

.page-product_detail .csx-step:last-child {
	padding-bottom: 0;
}

/* the spine — a gradient line running the height of each step, brightening
   toward the top tiers so the climb reads as progress */
.page-product_detail .csx-step::before {
	content: '';
	position: absolute;
	left: 32px;
	top: 56px;
	bottom: -0px;
	width: 2px;
	background: linear-gradient(180deg, rgba(199, 125, 255, .55), rgba(199, 125, 255, .12));
}

.page-product_detail .csx-step:last-child::before {
	display: none;
}

.page-product_detail .csx-step__node {
	position: relative;
	z-index: 1;
	width: 66px;
	height: 66px;
	display: grid;
	place-items: center;
	border-radius: 20px;
	background: rgba(16, 0, 43, .7);
	border: 1px solid rgba(199, 125, 255, .3);
	font-family: var(--ab-mono);
	font-size: 18px;
	font-weight: 500;
	color: var(--royal-velvet-4);
	transition: background .4s ease, border-color .4s ease, color .4s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.page-product_detail .csx-step:hover .csx-step__node {
	background: var(--ab-grad);
	border-color: transparent;
	color: #fff;
	transform: scale(1.06);
}

.page-product_detail .csx-step__card {
	border-radius: 24px;
	padding: clamp(22px, 2.6vw, 32px);
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(199, 125, 255, .18);
	backdrop-filter: blur(14px);
	transition: border-color .4s ease, background .4s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.page-product_detail .csx-step:hover .csx-step__card {
	border-color: rgba(199, 125, 255, .4);
	background: rgba(255, 255, 255, .06);
	transform: translateY(-3px);
}

.page-product_detail .csx-step__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 20px;
	margin-bottom: 22px;
	border-bottom: 1px solid rgba(199, 125, 255, .16);
}

.page-product_detail .csx-step__kicker {
	font-family: var(--ab-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(224, 170, 255, .6);
}

.page-product_detail .csx-step__name {
	margin: 6px 0 0;
	font-family: var(--ab-head);
	font-weight: 500;
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.1;
	color: #fff;
}

.page-product_detail .csx-step__price {
	margin: 0;
	text-align: right;
	white-space: nowrap;
}

.page-product_detail .csx-step__price-num {
	display: block;
	font-family: var(--ab-head);
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
	background: linear-gradient(120deg, #fff, var(--royal-velvet-4));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.page-product_detail .csx-step__price-unit {
	font-family: var(--ab-mono);
	font-size: 10px;
	letter-spacing: .12em;
	color: rgba(224, 170, 255, .6);
}

.page-product_detail .csx-step__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin-bottom: 22px;
}

.page-product_detail .csx-field__label {
	display: block;
	margin-bottom: 8px;
	font-family: var(--ab-mono);
	font-size: 10.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--royal-velvet-4);
}

.page-product_detail .csx-field p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(224, 170, 255, .86);
}

.page-product_detail .csx-field--learn {
	padding-top: 20px;
	margin-bottom: 24px;
	border-top: 1px solid rgba(199, 125, 255, .14);
}

.page-product_detail .csx-checks {
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
	display: grid;
	gap: 11px;
}

.page-product_detail .csx-checks li {
	display: flex;
	gap: 12px;
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(224, 170, 255, .82);
}

.page-product_detail .csx-checks i {
	flex-shrink: 0;
	margin-top: 3px;
	width: 18px;
	height: 18px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(199, 125, 255, .16);
	color: var(--royal-velvet-4);
	font-size: 9px;
}

.page-product_detail .csx-step__foot {
	display: flex;
	justify-content: flex-end;
}

.page-product_detail .csx-step__foot .enroll-form {
	margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
	.page-product_detail .csx-hero__in {
		grid-template-columns: 1fr;
	}

	.page-product_detail .csx-hero__media {
		order: -1;
	}

	.page-product_detail .csx-brief__in {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.page-product_detail .csx-brief__aside {
		position: static;
	}

	.page-product_detail .csx-step__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 560px) {
	.page-product_detail .csx-step {
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 14px;
	}

	.page-product_detail .csx-step__node {
		width: 46px;
		height: 46px;
		border-radius: 14px;
		font-size: 14px;
	}

	.page-product_detail .csx-step::before {
		left: 22px;
		top: 44px;
	}

	.page-product_detail .csx-step__head {
		flex-direction: column;
		gap: 10px;
	}

	.page-product_detail .csx-step__price {
		text-align: left;
	}

	.page-product_detail .csx-step__foot .csx-btn,
	.page-product_detail .csx-step__foot .enroll-form {
		width: 100%;
	}

	.page-product_detail .csx-step__foot .csx-btn {
		justify-content: center;
	}
}

/* ==========================================================================
   POLICY / DOCUMENT — plx-* (page-page)
   The document filed as a record: a velvet masthead, then an open reading
   sheet with a docked, auto-built contents index. Numbered sections carry
   their figure in the margin. Royal Velvet.
   ========================================================================== */
.page-page .plx-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 950;
	background: rgba(199, 125, 255, .12);
	pointer-events: none;
}

.page-page .plx-progress span {
	display: block;
	height: 100%;
	transform: scaleX(0);
	transform-origin: left center;
	background: var(--ab-grad);
}

/* ---------- masthead ---------- */
.page-page .plx-mast {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(44px, 6vw, 84px) 0 clamp(40px, 5vw, 64px);
	color: #fff;
	background:
		radial-gradient(820px 460px at 80% 0%, rgba(123, 44, 191, .5), transparent 62%),
		linear-gradient(160deg, var(--royal-velvet-1) 0%, #1b0442 52%, var(--royal-velvet-1) 100%);
}

.page-page .plx-mast__grid {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(199, 125, 255, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(199, 125, 255, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(circle at 75% 0%, #000, transparent 70%);
	mask-image: radial-gradient(circle at 75% 0%, #000, transparent 70%);
}

.page-page .plx-mast__aura {
	position: absolute;
	z-index: -1;
	width: 420px;
	height: 420px;
	top: -170px;
	right: -90px;
	border-radius: 50%;
	background: var(--royal-velvet-3);
	opacity: .38;
	filter: blur(100px);
}

.page-page .plx-mast__crumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 26px;
	font-family: var(--ab-mono);
	font-size: 12px;
	letter-spacing: .06em;
	color: rgba(224, 170, 255, .6);
}

.page-page .plx-mast__crumb a {
	color: rgba(224, 170, 255, .8);
	text-decoration: none;
	transition: color .3s;
}

.page-page .plx-mast__crumb a:hover {
	color: #fff;
}

.page-page .plx-mast__crumb i {
	font-size: 10px;
	color: var(--royal-velvet-4);
}

.page-page .plx-mast__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(199, 125, 255, .12);
	border: 1px solid rgba(199, 125, 255, .28);
	font-family: var(--ab-mono);
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--royal-velvet-5);
}

.page-page .plx-mast__title {
	margin: 0;
	font-family: var(--ab-head);
	font-weight: 500;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1.04;
	letter-spacing: -.02em;
	color: #fff;
}

.page-page .plx-mast__stamp {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 22px 0 0;
	font-family: var(--ab-mono);
	font-size: 12.5px;
	letter-spacing: .04em;
	color: rgba(224, 170, 255, .66);
}

.page-page .plx-mast__stamp i {
	color: var(--royal-velvet-4);
}

.page-page .plx-mast__stamp b {
	font-weight: 600;
	color: #fff;
}

/* ---------- document body ---------- */
.page-page .plx-doc {
	background: var(--ab-wash);
	padding: clamp(44px, 6vw, 84px) 0 clamp(56px, 7vw, 100px);
}

.page-page .plx-doc__in {
	display: grid;
	grid-template-columns: 244px minmax(0, 1fr);
	gap: clamp(30px, 4vw, 64px);
	align-items: start;
}

/* docked contents */
.page-page .plx-doc__rail {
	position: sticky;
	top: 96px;
}

.page-page .plx-toc {
	border-left: 2px solid var(--rv-line);
	padding-left: 20px;
	max-height: calc(100vh - 140px);
	overflow: auto;
}

.page-page .plx-toc__label {
	margin: 0 0 16px;
	font-family: var(--ab-mono);
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--royal-velvet-3);
}

.page-page .plx-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
}

.page-page .plx-toc__list a {
	display: flex;
	gap: 12px;
	padding: 8px 0;
	text-decoration: none;
	color: var(--ab-muted);
	font-size: 13.5px;
	line-height: 1.45;
	transition: color .25s;
}

.page-page .plx-toc__list a:hover {
	color: var(--royal-velvet-3);
}

.page-page .plx-toc__num {
	font-family: var(--ab-mono);
	font-size: 11px;
	color: var(--royal-velvet-4);
	flex-shrink: 0;
	padding-top: 1px;
}

.page-page .plx-toc__list a.is-current {
	color: var(--royal-velvet-2);
	font-weight: 600;
}

.page-page .plx-toc__list a.is-current .plx-toc__num {
	color: var(--royal-velvet-3);
}

/* the sheet — an open editorial column, not a boxed card */
.page-page .plx-sheet {
	max-width: 74ch;
	font-size: 16px;
	line-height: 1.82;
	color: var(--ab-slate);
}

.page-page .plx-dupe {
	display: none;
}

.page-page .plx-sheet > *:first-child {
	margin-top: 0;
}

.page-page .plx-sheet h2,
.page-page .plx-sheet h3,
.page-page .plx-sheet h4 {
	font-family: var(--ab-head);
	font-weight: 600;
	color: var(--ab-ink);
	line-height: 1.2;
	letter-spacing: -.01em;
}

.page-page .plx-sheet h2 { font-size: clamp(24px, 3vw, 32px); margin: 46px 0 16px; }
.page-page .plx-sheet h3 { font-size: 21px; margin: 36px 0 14px; }
.page-page .plx-sheet h4 { font-size: 17px; margin: 28px 0 12px; }

/* numbered section heading — figure sits in the margin */
.page-page .plx-section {
	position: relative;
	padding-top: 30px;
	margin-top: 48px;
	border-top: 1px solid var(--rv-line);
}

.page-page .plx-section:first-of-type {
	margin-top: 8px;
}

.page-page .plx-section::before {
	content: attr(data-num);
	display: block;
	margin-bottom: 8px;
	font-family: var(--ab-mono);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .1em;
	color: var(--royal-velvet-3);
}

.page-page .plx-sheet p {
	margin: 0 0 18px;
}

.page-page .plx-sheet ul,
.page-page .plx-sheet ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

.page-page .plx-sheet li {
	margin-bottom: 9px;
}

.page-page .plx-sheet li::marker {
	color: var(--royal-velvet-4);
}

.page-page .plx-sheet a {
	color: var(--royal-velvet-2);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.page-page .plx-sheet strong {
	color: var(--ab-ink);
	font-weight: 650;
}

.page-page .plx-sheet table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 22px;
	font-size: 14.5px;
}

.page-page .plx-sheet th,
.page-page .plx-sheet td {
	padding: 12px 14px;
	border: 1px solid var(--rv-line);
	text-align: left;
	vertical-align: top;
}

.page-page .plx-sheet th {
	background: var(--rv-tint);
	color: var(--ab-ink);
	font-weight: 600;
}

/* ---------- help footer + back to top ---------- */
.page-page .plx-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin-top: clamp(44px, 5vw, 72px);
	padding: clamp(26px, 3vw, 38px);
	border-radius: 24px;
	color: #fff;
	background:
		radial-gradient(500px 220px at 88% 0%, rgba(123, 44, 191, .5), transparent 70%),
		linear-gradient(150deg, var(--royal-velvet-2), var(--royal-velvet-1));
	box-shadow: var(--ab-shadow-lg);
}

.page-page .plx-foot__title {
	margin: 0 0 6px;
	font-family: var(--ab-head);
	font-size: 22px;
	font-weight: 600;
	color: #fff;
}

.page-page .plx-foot__text {
	margin: 0;
	font-size: 14.5px;
	color: rgba(224, 170, 255, .8);
}

.page-page .plx-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	background: #fff;
	color: var(--royal-velvet-2);
	font-size: 14.5px;
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
	transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s;
}

.page-page .plx-btn i {
	font-size: 12px;
	transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.page-page .plx-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px -16px rgba(0, 0, 0, .6);
}

.page-page .plx-btn:hover i {
	transform: translateX(3px);
}

.page-page .plx-top {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 900;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 16px;
	border: 0;
	border-radius: 999px;
	background: var(--ab-grad);
	color: #fff;
	font-family: var(--ab-mono);
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: var(--ab-glow);
	transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.page-page .plx-top:hover {
	transform: translateY(-3px);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
	.page-page .plx-doc__in {
		grid-template-columns: 1fr;
	}

	.page-page .plx-doc__rail {
		position: static;
		display: none;
	}

	.page-page .plx-sheet {
		max-width: none;
	}
}

@media (max-width: 560px) {
	.page-page .plx-foot {
		flex-direction: column;
		align-items: flex-start;
	}

	.page-page .plx-top span {
		display: none;
	}
}
