/* CLS — violet brand (#5f21e5 on #22163b) */

:root {
    --z-accent: #5f21e5;
    --z-accent-hover: #7b45f0;
    --z-accent-dim: #4a1ab8;
    --z-accent-muted: rgba(95, 33, 229, 0.18);
    --z-accent-subtle: rgba(95, 33, 229, 0.10);
    --z-accent-border: rgba(95, 33, 229, 0.40);
    --z-on-accent: #ffffff;
    --z-scrollbar-thumb-active: rgba(95, 33, 229, 0.55);
}

/* ── Brand wordmark ─────────────────────────────────────────────────────── */

.app-brand h1,
.login-brand__word,
.login-hero__word {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-size: 1.05rem;
    letter-spacing: -0.04em;
    line-height: 1;
    font-weight: inherit;
}

.app-brand__safe,
.login-brand__safe,
.login-hero__safe,
.app-brand__name,
.login-brand__name,
.login-hero__name,
.sa-brand__name {
    font-weight: 700;
    color: var(--z-accent);
}

.app-brand__arc,
.login-brand__arc,
.login-hero__arc {
    font-weight: 700;
    color: var(--z-accent);
}

.login-brand {
    display: flex;
    align-items: center;
    gap: var(--z-space-3);
    margin-bottom: var(--z-space-8);
}

.login-brand .login-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
}

.login-brand .login-logo .z5-logo,
.brand-icon .z5-logo,
.app-brand .z5-logo,
.login-brand .login-logo img.z5-logo,
.brand-icon img.z5-logo,
.app-brand img.z5-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.login-hero h1 .login-hero__word {
    font-size: 1.75rem;
}

.login-back {
    position: fixed;
    top: var(--z-space-6);
    left: var(--z-space-6);
    z-index: 10;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--z-muted);
    transition: color 0.15s;
}

.login-back:hover { color: var(--z-text); }

.btn.is-active,
.admin-tab.is-active,
.purchase-tab.is-active {
    color: var(--z-accent);
    border-color: var(--z-accent-border);
    background: var(--z-accent-subtle);
}

/* ── App polish ──────────────────────────────────────────────────────────── */

.app-main {
    padding: var(--z-space-6);
    gap: var(--z-space-4);
}

.sync-grid {
    gap: var(--z-space-4);
}

.sync-row {
    align-items: stretch;
}

.sync-row > .card {
    display: flex;
    flex-direction: column;
}

.sync-row > .card .card-body {
    flex: 1;
}

.card {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.card--hero {
    border-color: var(--z-accent-border);
    background: linear-gradient(165deg, var(--z-surface-elevated) 0%, var(--z-surface) 55%, rgba(95, 33, 229, 0.04) 100%);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--z-accent);
    margin: 0 0 var(--z-space-2);
}

.pill--sm {
    font-size: 0.65rem;
    padding: 2px 8px;
}

/* ── Site footer ─────────────────────────────────────────────────────────── */

.site-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--z-space-4);
    flex-wrap: wrap;
    padding: var(--z-space-5) var(--z-space-6);
    border-top: 1px solid var(--z-border-subtle);
    font-size: 0.8rem;
    color: var(--z-dim);
}

.site-foot a {
    color: var(--z-muted);
    transition: color 0.15s;
}

.site-foot a:hover { color: var(--z-accent); }

/* ── Home hero ───────────────────────────────────────────────────────────── */

.card--hero .card-body {
    padding: var(--z-space-6);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--z-space-6);
    align-items: center;
}

.hero-split__copy {
    min-width: 0;
}

.hero-split__media {
    min-width: 0;
}

/* ── Dual product lineup ─────────────────────────────────────────────────── */

.home-products {
    display: flex;
    flex-direction: column;
    gap: var(--z-space-4);
}

.home-products__head {
    text-align: left;
    max-width: 56ch;
}

.home-products__intro {
    width: 100%;
}

.home-products__title {
    margin: 0 0 8px;
    font-size: 1.45rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: var(--z-text);
}

.home-products__lead {
    margin: 0;
    color: var(--z-text-secondary);
    line-height: 1.55;
}

.home-products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--z-space-4);
}

.home-product__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: var(--z-space-5);
    height: 100%;
}

.home-product__top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.home-product__top .pill {
    margin-left: auto;
    flex-shrink: 0;
}

.home-product__icon {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: color-mix(in srgb, var(--z-accent) 16%, transparent);
    color: var(--z-accent);
    flex-shrink: 0;
}

.home-product--spoof .home-product__icon {
    background: color-mix(in srgb, #5f21e5 16%, transparent);
    color: #5f21e5;
}

.home-product--spoof {
    border-color: color-mix(in srgb, #5f21e5 28%, var(--z-border-subtle));
}

.home-product__eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--z-muted);
}

.home-product__name {
    margin: 2px 0 0;
    font-size: 1.35rem;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.home-product__tagline {
    margin: 0;
    font-weight: 600;
    color: var(--z-text);
}

.home-product__blurb {
    margin: 0;
    color: var(--z-text-secondary);
    line-height: 1.5;
}

.home-product__perks {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.home-product__perks li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--z-text-secondary);
    font-size: 0.92rem;
    line-height: 1.4;
}

.home-product__perks i {
    margin-top: 3px;
    color: var(--z-accent);
}

.home-product--spoof .home-product__perks i {
    color: #5f21e5;
}

.home-product__foot {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.home-product__price {
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--z-text);
}

.home-cta__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--z-space-5);
    flex-wrap: wrap;
}

.home-cta__title {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 750;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-grid--home {
    grid-template-columns: 1fr;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--z-space-5);
}

.hero-meta .tag,
.hero-meta .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 26px;
    padding: 0 10px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 4px;
    box-sizing: border-box;
    white-space: nowrap;
}

.tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--z-accent);
    border: 1px solid var(--z-accent-border);
    background: var(--z-accent-subtle);
}

.hero-meta .pill--live {
    color: #7b45f0;
    border-color: rgba(95, 33, 229, 0.45);
    background: linear-gradient(135deg, rgba(95, 33, 229, 0.2) 0%, rgba(95, 33, 229, 0.08) 100%);
    box-shadow:
        0 0 14px rgba(95, 33, 229, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 12px rgba(139, 92, 246, 0.35);
}

.hero-meta .pill--live .status-dot--live {
    background: #4be191;
    box-shadow: 0 0 8px rgba(95, 33, 229, 0.85);
}

.hero-meta .pill--idle {
    color: var(--z-muted);
    border-color: var(--z-border);
    background: transparent;
    box-shadow: none;
    text-shadow: none;
}

.tag--dim {
    color: var(--z-muted);
    border-color: var(--z-border);
    background: transparent;
}

.tag--rec {
    margin-left: 6px;
    font-size: 0.62rem;
    vertical-align: middle;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--z-text);
    margin-bottom: var(--z-space-3);
}

.hero-title em {
    font-style: normal;
    color: var(--z-accent);
}

.hero-lead {
    font-size: 0.95rem;
    color: var(--z-muted);
    line-height: 1.55;
    max-width: 52ch;
    margin-bottom: var(--z-space-5);
}

.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--z-space-2);
    margin-bottom: var(--z-space-6);
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: var(--z-space-2);
    font-size: 0.875rem;
    color: var(--z-text-secondary);
}

.feat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--z-accent);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--z-space-3);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--z-space-3);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--z-space-3);
    font-size: 0.875rem;
    color: var(--z-text-secondary);
}

.feature-list li i {
    width: 18px;
    color: var(--z-accent);
    text-align: center;
}

.feature-list--compact {
    gap: 6px;
}

.feature-list--compact li {
    position: relative;
    padding-left: 12px;
    font-size: 0.82rem;
    line-height: 1.4;
}

.feature-list--compact li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--z-accent);
}

.steps-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--z-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.steps-list li + li { margin-top: var(--z-space-2); }

.faq-compact dt {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--z-text);
    margin-top: var(--z-space-4);
}

.faq-compact dt:first-child { margin-top: 0; }

.faq-compact dd {
    font-size: 0.85rem;
    color: var(--z-muted);
    margin: var(--z-space-1) 0 0;
    line-height: 1.5;
}

.faq-compact a { color: var(--z-accent); }

/* ── Showcase dock (hero video) ───────────────────────────────────────────── */

.showcase-dock {
    position: relative;
    border: 1px solid var(--z-border-subtle);
    border-radius: var(--z-radius);
    background: linear-gradient(165deg, var(--z-surface-elevated), var(--z-bg-elevated));
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.showcase-dock__corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--z-accent);
    border-style: solid;
    opacity: 0.65;
    pointer-events: none;
    z-index: 3;
}

.showcase-dock__corner--tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.showcase-dock__corner--tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.showcase-dock__corner--bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.showcase-dock__corner--br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.showcase-dock__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--z-space-2);
    padding: 8px 12px;
    border-bottom: 1px solid var(--z-border-subtle);
    background: rgba(0, 0, 0, 0.22);
}

.showcase-dock__label {
    font-family: var(--z-mono);
    font-size: 0.68rem;
    color: var(--z-muted);
    letter-spacing: 0.03em;
}

.showcase-preview {
    display: block;
    position: relative;
    width: 100%;
    padding: 0;
    border: none;
    background: #0a0f1a;
    cursor: pointer;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.showcase-preview--static { cursor: default; }

.showcase-preview__art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 42%;
    padding: 8px 12px 28px;
}

.showcase-preview__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: 24px 24px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 45%, black, transparent);
    pointer-events: none;
}

.showcase-preview__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 13, 24, 0.05) 0%, rgba(9, 13, 24, 0.35) 68%, rgba(9, 13, 24, 0.75) 100%);
    pointer-events: none;
    transition: background 0.2s ease;
}

.showcase-preview:hover .showcase-preview__shade {
    background: linear-gradient(180deg, rgba(9, 13, 24, 0) 0%, rgba(9, 13, 24, 0.4) 65%, rgba(9, 13, 24, 0.82) 100%);
}

.showcase-preview__play {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--z-accent);
    color: #fff;
    font-size: 1.05rem;
    box-shadow: 0 0 0 5px rgba(95, 33, 229, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.showcase-preview:hover .showcase-preview__play {
    transform: translate(-50%, -50%) scale(1.07);
    box-shadow: 0 0 0 7px rgba(95, 33, 229, 0.26);
}

.showcase-preview__play i { margin-left: 2px; }

.showcase-preview__cta {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--z-text);
    background: rgba(9, 13, 24, 0.82);
    border: 1px solid var(--z-border-subtle);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    z-index: 2;
    white-space: nowrap;
}

/* ── Hero showcase slider ─────────────────────────────────────────────────── */

.hero-slider {
    width: 100%;
    min-width: 0;
}

.hero-slider__shell {
    position: relative;
    border: 1px solid rgba(95, 33, 229, 0.22);
    border-radius: calc(var(--z-radius) + 2px);
    background:
        linear-gradient(165deg, rgba(42, 28, 72, 0.98), rgba(34, 22, 59, 0.98));
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 18px 48px rgba(0, 0, 0, 0.42),
        0 0 40px rgba(95, 33, 229, 0.06);
}

.hero-slider__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--z-space-2);
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
}

.hero-slider__label {
    font-family: var(--z-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--z-text);
    letter-spacing: 0.04em;
}

.hero-slider__label-dim {
    color: var(--z-muted);
    font-weight: 500;
}

.hero-slider__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-slider__signal {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 12px;
    opacity: 0.75;
}

.hero-slider__signal i {
    display: block;
    width: 3px;
    border-radius: 999px;
    background: var(--z-accent);
    animation: heroSignal 1.2s ease-in-out infinite;
}

.hero-slider__signal i:nth-child(1) { height: 5px; animation-delay: 0s; }
.hero-slider__signal i:nth-child(2) { height: 9px; animation-delay: 0.15s; }
.hero-slider__signal i:nth-child(3) { height: 6px; animation-delay: 0.3s; }

@keyframes heroSignal {
    0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-slider__stage {
    position: relative;
    margin: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--z-radius);
    background: #060a12;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(95, 33, 229, 0.08);
}

.hero-slider__corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: var(--z-accent);
    border-style: solid;
    opacity: 0.9;
    pointer-events: none;
    z-index: 4;
}

.hero-slider__corner--tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.hero-slider__corner--tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.hero-slider__corner--bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.hero-slider__corner--br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.hero-slider__scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 95% 90% at 50% 45%, black, transparent);
    opacity: 0.55;
}

.hero-slider__viewport {
    position: relative;
    background: #060a12;
}

.hero-slider__track {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 0.42s ease, transform 0.5s ease;
    pointer-events: none;
}

.hero-slider__slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.hero-slider__slide[hidden] {
    display: block;
}

.hero-slider__zoom {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: #060a12;
    cursor: zoom-in;
    overflow: hidden;
}

.hero-slider__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-slider__zoom:hover .hero-slider__img {
    transform: scale(1.02);
    filter: brightness(1.04);
}

.hero-slider__expand {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(34, 22, 59, 0.88);
    border: 1px solid rgba(95, 33, 229, 0.45);
    box-shadow:
        0 0 0 1px rgba(95, 33, 229, 0.08),
        inset 0 1px 0 rgba(139, 92, 246, 0.12);
    color: #f1f5f9;
    font-size: 0.82rem;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    z-index: 3;
}

.hero-slider__expand::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    border-color: #5f21e5;
    border-style: solid;
    border-width: 2px 2px 0 0;
    opacity: 0.9;
    pointer-events: none;
}

.hero-slider__zoom:hover .hero-slider__expand,
.hero-slider__zoom:focus-visible .hero-slider__expand {
    opacity: 1;
    transform: none;
    background: rgba(42, 28, 72, 0.95);
    border-color: rgba(95, 33, 229, 0.65);
    box-shadow: 0 0 0 1px rgba(95, 33, 229, 0.15), 0 0 16px rgba(95, 33, 229, 0.2);
}

.hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(95, 33, 229, 0.4);
    border-radius: 50%;
    background: rgba(34, 22, 59, 0.88);
    color: #f1f5f9;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 0 1px rgba(95, 33, 229, 0.06);
    transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider__viewport:hover .hero-slider__nav,
.hero-slider__nav:focus-visible {
    opacity: 1;
}

.hero-slider__nav:hover {
    background: rgba(42, 28, 72, 0.96);
    border-color: #5f21e5;
    color: #7b45f0;
    box-shadow: 0 0 16px rgba(95, 33, 229, 0.25);
    transform: translateY(-50%) scale(1.04);
}

.hero-slider__nav--prev { left: 12px; }
.hero-slider__nav--next { right: 12px; }

.hero-slider__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(80px, 120px) auto;
    align-items: center;
    gap: 14px;
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
}

.hero-slider__footer-copy {
    min-width: 0;
}

.hero-slider__title {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--z-text);
    line-height: 1.2;
}

.hero-slider__hint {
    display: block;
    margin-top: 3px;
    font-size: 0.78rem;
    color: var(--z-muted);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-slider__progress {
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hero-slider__progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #4a1ab8, #5f21e5);
    transition: width 0.45s ease;
    box-shadow: 0 0 12px rgba(95, 33, 229, 0.45);
}

.hero-slider__footer-end {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-slider__count {
    font-family: var(--z-mono);
    font-size: 0.72rem;
    color: var(--z-muted);
    white-space: nowrap;
}

.hero-slider__count [data-slide-current] {
    color: var(--z-accent);
    font-weight: 700;
}

.hero-slider__count-sep {
    opacity: 0.45;
    margin: 0 1px;
}

.hero-slider__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.hero-slider__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.hero-slider__dot.is-active {
    width: 18px;
    border-radius: 999px;
    background: var(--z-accent);
}

.hero-slider__dot:hover {
    background: rgba(95, 33, 229, 0.65);
}

.hero-slider.is-paused .hero-slider__progress-fill {
    animation: heroSliderPulse 1.2s ease-in-out infinite;
}

@keyframes heroSliderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

/* ── Gallery lightbox (reuses video modal shell) ─────────────────────────── */

.gallery-modal__dialog {
    width: min(960px, 100%);
}

.gallery-modal__body {
    padding: 0;
    background: #06090e;
}

.gallery-modal__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(78vh, 720px);
    object-fit: contain;
    margin: 0 auto;
    background: #06090e;
}


/* ── Video modal popup ───────────────────────────────────────────────────── */

html.video-modal-open { overflow: hidden; }

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--z-space-4);
}

.video-modal[hidden] { display: none; }

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(34, 22, 59, 0.78);
    backdrop-filter: blur(6px);
}

.video-modal__dialog {
    position: relative;
    width: min(720px, 100%);
    background: var(--z-surface);
    border: 1px solid var(--z-border-subtle);
    border-radius: var(--z-radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    animation: videoModalIn 0.22s ease both;
}

@keyframes videoModalIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.video-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--z-space-3);
    padding: var(--z-space-3) var(--z-space-4);
    border-bottom: 1px solid var(--z-border-subtle);
    background: var(--z-surface-elevated);
}

.video-modal__head-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--z-text);
}

.gallery-modal .video-modal__head-title i { color: var(--z-accent); font-size: 1rem; }


.video-modal__body { padding: var(--z-space-4); }

.video-modal__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--z-radius-sm);
    overflow: hidden;
}

.video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal__external {
    display: flex;
    flex-direction: column;
    gap: var(--z-space-4);
}

.video-modal__preview {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--z-radius-sm);
    overflow: hidden;
    background: var(--z-bg);
    cursor: pointer;
}

.video-modal__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-modal__preview-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(9, 13, 24, 0.65) 100%);
    pointer-events: none;
}

.video-modal__preview-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--z-accent);
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 0 0 6px rgba(95, 33, 229, 0.2);
    pointer-events: none;
}

.video-modal__preview-play i { margin-left: 3px; }

.video-modal__copy { text-align: center; }

.video-modal__title {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--z-text);
}

.video-modal__copy .hint { margin: 0 0 var(--z-space-3); }

/* ── Purchase page ─────────────────────────────────────────────────────────── */

.purchase-wrap,
.sync-grid--purchase {
    display: flex;
    flex-direction: column;
    gap: var(--z-space-4);
    width: 100%;
}

.purchase-step {
    margin-bottom: 22px;
}

.purchase-step__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    font-size: 0.92rem;
    font-weight: 650;
    color: var(--text-muted, #9aa3b5);
    letter-spacing: 0.01em;
}

.purchase-step__label span {
    display: inline-grid;
    place-items: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent, #5f21e5) 18%, transparent);
    color: var(--accent, #5f21e5);
    font-size: 0.78rem;
    font-weight: 800;
}

.purchase-products {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.purchase-product-card .purchase-plan-card__label {
    font-size: 1.15rem;
}

.purchase-plan__tagline {
    margin: 0 0 10px;
    color: var(--text-muted, #9aa3b5);
    font-size: 0.95rem;
}

.purchase-discord-hint {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent, #5f21e5) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent, #5f21e5) 22%, transparent);
    color: var(--text-muted, #9aa3b5);
    font-size: 0.95rem;
    line-height: 1.45;
}

.purchase-discord-hint strong {
    color: var(--text, #fff);
}

.purchase-hero {
    padding-bottom: 0;
    border-bottom: none;
}

.purchase-hero-card .purchase-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.purchase-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--z-text);
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.purchase-lead {
    font-size: 0.9rem;
    color: var(--z-text-secondary);
    margin: 0;
    line-height: 1.6;
    max-width: 52ch;
}

.purchase-support-note {
    margin: 12px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--z-accent, #5f21e5) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--z-accent, #5f21e5) 22%, transparent);
    color: var(--z-text-secondary);
    font-size: 0.86rem;
    line-height: 1.4;
}

.purchase-support-note i {
    color: var(--z-accent, #5f21e5);
}

.purchase-support-note strong {
    color: var(--z-text);
    font-weight: 650;
}

/* Equal-height plan + binance row */
.purchase-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--z-space-3);
}

[data-plan-group][hidden] {
    display: none !important;
}

.purchase-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: var(--z-space-4) var(--z-space-5);
    padding-bottom: calc(var(--z-space-4) + 18px);
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
    background: var(--z-surface);
    border: 1px solid var(--z-border-subtle);
    border-radius: var(--z-radius);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.purchase-plan-card:hover {
    border-color: rgba(95, 33, 229, 0.35);
}

.purchase-plan-card.is-selected {
    border-color: rgba(95, 33, 229, 0.65);
    box-shadow: 0 0 0 1px rgba(95, 33, 229, 0.35), 0 8px 24px rgba(0, 0, 0, 0.2);
    background: linear-gradient(160deg, rgba(95, 33, 229, 0.1) 0%, var(--z-surface) 55%);
}

.purchase-plan-card__check {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(95, 33, 229, 0.2);
    border: 1px solid rgba(95, 33, 229, 0.55);
    color: #7b45f0;
    font-size: 0.7rem;
}

.purchase-plan-card.is-selected .purchase-plan-card__check {
    display: inline-flex;
}

.purchase-plan-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #7b45f0;
    background: rgba(95, 33, 229, 0.16);
    border: 1px solid rgba(95, 33, 229, 0.35);
    border-radius: 999px;
    padding: 3px 8px;
}

.purchase-plan-card__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--z-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.purchase-plan-card__price {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--z-accent);
    line-height: 1;
}

.purchase-plan-card__meta {
    font-size: 0.85rem;
    color: var(--z-muted);
}

.purchase-plan-card__blurb {
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--z-text-secondary);
}

.purchase-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--z-space-3);
    align-items: stretch;
}

.purchase-top > .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.purchase-plan__body,
.purchase-binance__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    padding: var(--z-space-4) var(--z-space-5);
    min-height: 100%;
}

.purchase-plan__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.purchase-plan__head .tag {
    height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.68rem;
}

.purchase-plan__head .pill--live {
    height: 26px;
    padding: 0 10px;
    font-size: 0.68rem;
    text-transform: none;
    letter-spacing: 0;
    color: #7b45f0;
    border-color: rgba(95, 33, 229, 0.45);
    background: linear-gradient(135deg, rgba(95, 33, 229, 0.2), rgba(95, 33, 229, 0.08));
    box-shadow: 0 0 12px rgba(95, 33, 229, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.purchase-plan__head .pill--live .status-dot--live {
    background: #4be191;
    box-shadow: 0 0 8px rgba(95, 33, 229, 0.85);
}

.purchase-plan__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--z-accent);
    line-height: 1;
    margin: 4px 0 0;
}

.purchase-plan__price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--z-muted);
}

.purchase-perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.purchase-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--z-text-secondary);
    line-height: 1.35;
}

.purchase-perks li i {
    color: var(--z-accent);
    font-size: 0.7rem;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--z-accent-muted);
    flex-shrink: 0;
}

/* Binance card — violet wash */
.purchase-binance {
    background: linear-gradient(160deg, rgba(95, 33, 229, 0.1) 0%, var(--z-surface) 55%);
    border-color: rgba(95, 33, 229, 0.32);
    box-shadow: 0 0 0 1px rgba(95, 33, 229, 0.06), inset 0 1px 0 rgba(139, 92, 246, 0.06);
}

.purchase-binance__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 600;
    color: #7b45f0;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(95, 33, 229, 0.14);
    border: 1px solid rgba(95, 33, 229, 0.35);
}

.purchase-binance__badge i {
    color: #5f21e5;
    font-size: 0.65rem;
}

.purchase-binance__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--z-text);
}

.purchase-binance__id {
    margin: 0;
    font-family: var(--z-mono);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--z-text);
    letter-spacing: 0.02em;
    word-break: break-all;
}

.purchase-binance__hint {
    margin: 0;
    font-size: 0.8rem;
    color: var(--z-muted);
    line-height: 1.45;
    flex: 1;
}

.purchase-binance__hint strong {
    color: #5f21e5;
    font-weight: 700;
}

.purchase-binance__btn {
    align-self: flex-start;
    margin-top: auto;
    background: #5f21e5;
    color: #22163b;
    border: none;
}

.purchase-binance__btn:hover {
    background: #7b45f0;
    color: #22163b;
}

.pill--idle {
    color: var(--z-muted);
    border-color: var(--z-border);
    background: transparent;
}

/* Payment methods */
.purchase-methods__tabs {
    flex-wrap: wrap;
    gap: var(--z-space-3);
    min-height: auto;
    padding: var(--z-space-3) var(--z-space-4);
}

.purchase-methods__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--z-muted);
    margin-right: auto;
}

.purchase-methods__tablist {
    display: flex;
    gap: 6px;
}

.purchase-tab {
    appearance: none;
    border: 1px solid var(--z-border-subtle);
    background: var(--z-bg-elevated);
    color: var(--z-muted);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--z-radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.purchase-tab:hover {
    color: var(--z-text-secondary);
    border-color: var(--z-border);
}

.purchase-tab.is-active {
    color: var(--z-accent);
    border-color: var(--z-accent-border);
    background: var(--z-accent-subtle);
}

.purchase-panel__inner {
    padding: var(--z-space-4) var(--z-space-5) var(--z-space-5);
}

.purchase-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 var(--z-space-3);
    padding: 10px 12px;
    font-size: 0.8rem;
    line-height: 1.5;
    border-radius: var(--z-radius-sm);
    background: rgba(95, 33, 229, 0.06);
    border: 1px solid rgba(95, 33, 229, 0.18);
    color: var(--z-text-secondary);
}

.purchase-tip--soft {
    background: var(--z-bg-elevated);
    border-color: var(--z-border-subtle);
}

.purchase-tip i {
    color: var(--z-cyan);
    margin-top: 2px;
    flex-shrink: 0;
}

.wallet-table th,
.wallet-table td {
    padding: 9px var(--z-space-4);
    vertical-align: middle;
}

.wallet-table__copy-col {
    width: 68px;
    text-align: right;
}

.wallet-table__addr {
    font-size: 0.78rem;
}

.purchase-after {
    padding: var(--z-space-4) var(--z-space-5) var(--z-space-5);
}

.purchase-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--z-space-3);
    margin-top: var(--z-space-4);
    padding-top: var(--z-space-4);
    border-top: 1px solid var(--z-border-subtle);
}

.purchase-alert {
    margin: 8px 0;
}

.gift-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gift-card {
    display: flex;
    align-items: center;
    gap: var(--z-space-3);
    padding: 10px var(--z-space-3);
    border: 1px solid var(--z-border-subtle);
    border-radius: var(--z-radius-sm);
    background: var(--z-bg-elevated);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, background 0.15s;
}

.gift-card:hover {
    border-color: var(--z-accent-border);
    background: var(--z-accent-subtle);
    text-decoration: none;
}

.gift-card__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--z-radius-sm);
    background: var(--z-accent-muted);
    color: var(--z-accent);
    flex-shrink: 0;
}

.gift-card__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gift-card__text strong {
    font-size: 0.85rem;
    color: var(--z-text);
}

.gift-card__text small {
    font-size: 0.75rem;
    color: var(--z-muted);
}

.gift-card__arrow {
    color: var(--z-dim);
    font-size: 0.75rem;
}

.step-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--z-space-2);
}

.step-card {
    padding: 12px;
    border: 1px solid var(--z-border-subtle);
    border-radius: var(--z-radius-sm);
    background: var(--z-bg-elevated);
}

.step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--z-accent-muted);
    color: var(--z-accent);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--z-text-secondary);
    line-height: 1.45;
}

.step-card a { color: var(--z-accent); }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--z-space-5);
}

.steps-list--numbered {
    list-style: none;
    padding: 0;
    counter-reset: step;
}

.steps-list--numbered li {
    counter-increment: step;
    position: relative;
    padding-left: 2rem;
    margin-top: var(--z-space-3);
}

.steps-list--numbered li:first-child { margin-top: 0; }

.steps-list--numbered li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 1.35rem;
    height: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--z-accent-muted);
    color: var(--z-accent);
    font-size: 0.7rem;
    font-weight: 700;
}

.license-table th {
    width: 140px;
    color: var(--z-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding: 8px 12px 8px 0;
    vertical-align: top;
}

.license-table td {
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--z-text-secondary);
}

.code-block {
    font-family: var(--z-mono);
    font-size: 0.78rem;
    color: var(--z-text-secondary);
    background: var(--z-bg);
    border: 1px solid var(--z-border-subtle);
    border-radius: var(--z-radius-sm);
    padding: var(--z-space-3);
    overflow-x: auto;
    margin-top: var(--z-space-2);
}

/* ── Admin header tabs ───────────────────────────────────────────────────── */

.admin-tabs--header {
    display: inline-flex;
    gap: 4px;
    margin-right: var(--z-space-2);
    border: none;
    background: transparent;
    padding: 0;
}

.admin-tabs--header .admin-tab {
    text-decoration: none;
    font-size: 0.75rem;
    padding: 5px 10px;
}

.act-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-split__media {
        order: -1;
    }

    .hero-slider__nav {
        opacity: 1;
    }

    .hero-slider__footer {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-slider__footer-end {
        justify-content: space-between;
    }

    .purchase-plans {
        grid-template-columns: 1fr;
    }

    .purchase-top {
        grid-template-columns: 1fr;
    }

    .step-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .admin-tabs--header {
        order: -1;
        width: 100%;
        margin-bottom: var(--z-space-2);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .step-cards {
        grid-template-columns: 1fr;
    }

    .hero-meta {
        flex-wrap: wrap;
    }

    .purchase-methods__tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .purchase-methods__tablist {
        width: 100%;
    }

    .purchase-tab {
        flex: 1;
        justify-content: center;
    }

    .purchase-plan__body,
    .purchase-binance__body {
        padding: var(--z-space-4);
    }
}

@media (max-width: 600px) {
    .wallet-table thead { display: none; }
    .wallet-table tr {
        display: block;
        margin-bottom: 12px;
        padding: 12px;
        border: 1px solid var(--z-border-subtle);
        border-radius: var(--z-radius);
    }
    .wallet-table td {
        display: block;
        border: none;
        padding: 4px 0;
    }
    .wallet-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.65rem;
        text-transform: uppercase;
        color: var(--z-muted);
        margin-bottom: 2px;
    }
}

/* Fancybox — violet controls */
.fancybox-container {
    --fancybox-bg: rgba(34, 22, 59, 0.94);
}

.fancybox-bg {
    background: #22163b;
}

.fancybox-toolbar {
    background: rgba(42, 28, 72, 0.92);
    border: 1px solid rgba(95, 33, 229, 0.22);
    border-radius: 10px;
    margin: 12px;
    padding: 4px;
}

.fancybox-button {
    background: rgba(34, 22, 59, 0.88) !important;
    border: 1px solid rgba(95, 33, 229, 0.4) !important;
    border-radius: 8px !important;
    color: #f1f5f9 !important;
    margin: 2px;
}

.fancybox-button:hover {
    background: rgba(42, 28, 72, 0.96) !important;
    border-color: #5f21e5 !important;
    color: #7b45f0 !important;
}

.fancybox-navigation .fancybox-button {
    border-radius: 50% !important;
    background: rgba(34, 22, 59, 0.88) !important;
    border: 1px solid rgba(95, 33, 229, 0.45) !important;
    width: 44px;
    height: 44px;
}

.fancybox-navigation .fancybox-button:hover {
    border-color: #5f21e5 !important;
    color: #7b45f0 !important;
    box-shadow: 0 0 16px rgba(95, 33, 229, 0.25);
}

.fancybox-progress {
    background: #5f21e5 !important;
}

/* CLS color lock — force brand palette */
:root {
    --z-bg: #22163b !important;
    --z-bg-elevated: #2a1c48 !important;
    --z-surface: #2a1c48 !important;
    --z-surface-elevated: #342456 !important;
    --z-accent: #5f21e5 !important;
    --z-accent-hover: #7b45f0 !important;
    --z-accent-dim: #4a1ab8 !important;
    --z-accent-muted: rgba(95, 33, 229, 0.18) !important;
    --z-accent-subtle: rgba(95, 33, 229, 0.10) !important;
    --z-accent-border: rgba(95, 33, 229, 0.40) !important;
    --z-on-accent: #ffffff !important;
    --z-cyan: #8b5cf6 !important;
}