/**
 * Cyberspace Landing Shell 4.2.0
 * Horizon header + Gateway footer.
 *
 * Names are intentionally isolated from legacy landing selectors so individual
 * CSS files cannot redefine the shared shell.
 */

:root {
    --csl-shell-purple: #520f7d;
    --csl-shell-purple-deep: #31064d;
    --csl-shell-teal: #3ccec2;
    --csl-shell-blue: #4074e9;
    --csl-shell-gold: #f7c143;
    --csl-shell-ink: #101828;
    --csl-shell-muted: #667085;
    --csl-shell-line: rgba(16, 24, 40, .1);
    --csl-shell-canvas: #f7f8fc;
    --csl-shell-night: #080b14;
    --csl-shell-header-height: 76px;
    --csl-shell-ease: cubic-bezier(.22, 1, .36, 1);
}

.csl-shell-body {
    --csl-shell-inline: clamp(18px, 4vw, 48px);
}

/*
 * Integration boundary for markup emitted by wp_body_open(). The boundary is
 * deliberately a direct body child so third-party banners keep their original
 * DOM contract. Shell JS only trims a clearly anomalous leading reservation;
 * normal spacing and fixed overlays are left untouched.
 */
.csl-shell-body-open-boundary {
    display: none !important;
}

/*
 * The signed-in portal journey can be emitted by wp_body_open() inside a
 * viewport-height flex/grid wrapper. On landing templates that reservation
 * leaves the compact journey card at the bottom of an otherwise empty screen.
 * Shell JS marks only the uniquely identified journey chain, so these rules do
 * not alter announcements, cookie notices or other body-open integrations.
 */
.csl-shell-body [data-csl-shell-journey-spacer="true"] {
    position: static !important;
    inset: auto !important;
    min-block-size: 0 !important;
    min-height: 0 !important;
    block-size: auto !important;
    height: auto !important;
    flex: 0 0 auto !important;
    aspect-ratio: auto !important;
    margin-block-start: 0 !important;
    padding-block-start: 0 !important;
    align-content: flex-start !important;
    justify-content: flex-start !important;
    grid-template-rows: auto !important;
    grid-auto-rows: auto !important;
    transform: none !important;
    translate: none !important;
}

.csl-shell-body [data-csl-shell-journey-spacer="true"]::before {
    min-block-size: 0 !important;
    block-size: 0 !important;
    height: 0 !important;
    margin-block: 0 !important;
    padding-block: 0 !important;
}

.csl-shell-body [data-csl-shell-journey-banner="true"] {
    position: relative !important;
    inset: auto !important;
    min-block-size: 0 !important;
    height: auto !important;
    margin-block-start: var(--csl-shell-journey-offset, var(--csl-shell-live-height, var(--csl-shell-header-height))) !important;
    transform: none !important;
    translate: none !important;
}

.csl-shell-container {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: var(--csl-shell-inline);
}

.csl-shell-body .csl-main [id],
.csl-shell-body .csl-main > :first-child {
    scroll-margin-top: calc(var(--csl-shell-header-height) + 20px);
}

.csl-shell-body.csl-shell-menu-open {
    overflow: hidden;
}

.csl-shell-body.csl-shell-announcement-visible .csl-main {
    padding-top: 34px;
}

/* Header frame */

.csl-shell-header,
.csl-shell-header *,
.csl-shell-header *::before,
.csl-shell-header *::after,
.csl-shell-closing,
.csl-shell-closing *,
.csl-shell-footer,
.csl-shell-footer *,
.csl-shell-footer *::before,
.csl-shell-footer *::after {
    box-sizing: border-box;
}

.csl-shell-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 10000;
    width: 100%;
    color: var(--csl-shell-ink);
    font-family: var(--csl-font, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    isolation: isolate;
}

.csl-shell-header .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.csl-shell-nav {
    position: relative;
    min-height: var(--csl-shell-header-height);
    border-bottom: 1px solid rgba(82, 15, 125, .08);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 1px 0 rgba(16, 24, 40, .02);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    backdrop-filter: saturate(160%) blur(20px);
    transition:
        min-height .34s var(--csl-shell-ease),
        background-color .24s ease,
        box-shadow .24s ease;
}

.csl-shell-header.is-scrolled .csl-shell-nav {
    min-height: 64px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 34px rgba(16, 24, 40, .08);
}

.csl-shell-nav::after {
    position: absolute;
    inset: auto 0 -1px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(82, 15, 125, .34), rgba(60, 206, 194, .42), transparent);
    opacity: .42;
    pointer-events: none;
}

.csl-shell-nav__inner {
    display: grid;
    grid-template-columns: minmax(232px, 1fr) auto minmax(300px, 1fr);
    align-items: center;
    min-height: inherit;
    gap: 22px;
}

.csl-shell-nav__brand-zone,
.csl-shell-nav__actions,
.csl-shell-nav__primary {
    display: flex;
    align-items: center;
}

.csl-shell-nav__brand-zone {
    min-width: 0;
    gap: 13px;
}

.csl-shell-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 1 188px;
    min-width: 116px;
    border-radius: 10px;
    outline: none;
}

.csl-shell-brand img {
    display: block;
    width: min(188px, 100%);
    height: auto;
    margin: 0;
}

.csl-shell-brand:focus-visible,
.csl-shell-launcher-fallback:focus-visible,
.csl-shell-nav__item:focus-visible,
.csl-shell-nav__login:focus-visible,
.csl-shell-nav__cta:focus-visible,
.csl-shell-nav__mobile-trigger:focus-visible,
.csl-shell-mega__item:focus-visible,
.csl-shell-mega__featured:focus-visible,
.csl-shell-mobile a:focus-visible,
.csl-shell-mobile button:focus-visible,
.csl-shell-closing a:focus-visible,
.csl-shell-footer a:focus-visible {
    outline: 3px solid rgba(60, 206, 194, .82);
    outline-offset: 3px;
}

.csl-shell-nav__divider {
    width: 1px;
    height: 26px;
    flex: none;
    background: linear-gradient(180deg, transparent, rgba(16, 24, 40, .18), transparent);
}

.csl-shell-nav__launcher {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    flex: none;
}

.csl-shell-nav__launcher > * {
    margin: 0 !important;
}

.csl-shell-launcher-fallback {
    display: grid;
    grid-template-columns: repeat(2, 9px);
    grid-template-rows: repeat(2, 9px);
    gap: 3px;
    width: 40px;
    height: 40px;
    place-content: center;
    border: 1px solid rgba(82, 15, 125, .12);
    border-radius: 12px;
    background: rgba(82, 15, 125, .035);
    box-shadow: 0 7px 18px rgba(82, 15, 125, .08);
}

.csl-shell-launcher-fallback span {
    border-radius: 3px;
}

.csl-shell-launcher-fallback span:nth-child(1),
.csl-shell-footer__tiles i:nth-child(1),
.csl-shell-mega__featured-orbit i:nth-child(1) {
    background: var(--csl-shell-purple);
}

.csl-shell-launcher-fallback span:nth-child(2),
.csl-shell-footer__tiles i:nth-child(2),
.csl-shell-mega__featured-orbit i:nth-child(2) {
    background: var(--csl-shell-gold);
}

.csl-shell-launcher-fallback span:nth-child(3),
.csl-shell-footer__tiles i:nth-child(3),
.csl-shell-mega__featured-orbit i:nth-child(3) {
    background: var(--csl-shell-teal);
}

.csl-shell-launcher-fallback span:nth-child(4),
.csl-shell-footer__tiles i:nth-child(4),
.csl-shell-mega__featured-orbit i:nth-child(4) {
    background: var(--csl-shell-blue);
}

/* Primary navigation */

.csl-shell-nav__primary {
    justify-content: center;
    gap: 2px;
}

.csl-shell-nav__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    gap: 6px;
    padding: 9px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent !important;
    box-shadow: none !important;
    color: #475467;
    font: inherit;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.csl-shell-nav__item::after {
    position: absolute;
    right: 14px;
    bottom: 4px;
    left: 14px;
    height: 2px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, var(--csl-shell-purple), var(--csl-shell-teal));
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .18s ease, transform .24s var(--csl-shell-ease);
}

.csl-shell-nav__item:hover,
.csl-shell-nav__item.is-active,
.csl-shell-nav__item[aria-expanded="true"] {
    color: var(--csl-shell-purple);
    background: rgba(82, 15, 125, .055) !important;
}

.csl-shell-nav__item:hover {
    transform: translateY(-1px);
}

.csl-shell-nav__item.is-active::after,
.csl-shell-nav__item[aria-expanded="true"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.csl-shell-nav__item svg {
    transition: transform .24s var(--csl-shell-ease);
}

.csl-shell-nav__item[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.csl-shell-nav__actions {
    justify-content: flex-end;
    min-width: 0;
    gap: 10px;
}

.csl-shell-nav__language {
    display: flex;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
}

.csl-shell-language-fallback {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--csl-shell-line);
    border-radius: 12px;
    color: var(--csl-shell-muted);
    font-size: 12px;
    font-weight: 800;
}

.csl-shell-nav__login {
    padding: 10px 6px;
    color: #475467;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease;
}

.csl-shell-nav__login:hover {
    color: var(--csl-shell-purple);
}

.csl-shell-nav__cta,
.csl-shell-mobile__cta,
.csl-shell-closing__primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 13px;
    background:
        radial-gradient(circle at 84% 0, rgba(255, 255, 255, .28), transparent 34%),
        linear-gradient(135deg, var(--csl-shell-purple) 0%, #6c2b9b 58%, #215acb 145%);
    box-shadow: 0 10px 24px rgba(82, 15, 125, .2), inset 0 1px rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 13px;
    font-weight: 760;
    letter-spacing: -.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s var(--csl-shell-ease), box-shadow .2s ease;
}

.csl-shell-nav__cta {
    min-height: 42px;
    padding: 10px 15px;
}

.csl-shell-nav__cta::before,
.csl-shell-mobile__cta::before,
.csl-shell-closing__primary::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .18) 46%, transparent 72%);
    transform: translateX(-120%);
    transition: transform .65s var(--csl-shell-ease);
}

.csl-shell-nav__cta:hover,
.csl-shell-mobile__cta:hover,
.csl-shell-closing__primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 32px rgba(82, 15, 125, .27), inset 0 1px rgba(255, 255, 255, .25);
}

.csl-shell-nav__cta:hover::before,
.csl-shell-mobile__cta:hover::before,
.csl-shell-closing__primary:hover::before {
    transform: translateX(120%);
}

.csl-shell-nav__mobile-trigger {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    flex: none;
    border: 1px solid rgba(82, 15, 125, .1);
    border-radius: 13px;
    background: rgba(82, 15, 125, .035) !important;
    box-shadow: none !important;
    color: var(--csl-shell-ink);
}

/* Optional announcement */

.csl-shell-announcement {
    position: relative;
    min-height: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% -120%, rgba(60, 206, 194, .35), transparent 42%),
        linear-gradient(100deg, #12081d, #17112d 55%, #0c1934);
    color: rgba(255, 255, 255, .9);
}

.csl-shell-announcement::after {
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--csl-shell-teal), var(--csl-shell-purple), transparent);
    opacity: .55;
}

.csl-shell-announcement__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    gap: 9px;
    padding-block: 6px;
}

.csl-shell-announcement__spark {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--csl-shell-teal);
}

.csl-shell-announcement p {
    margin: 0;
    color: inherit;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.csl-shell-announcement a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 780;
    text-decoration: none;
}

.csl-shell-announcement a:hover {
    color: var(--csl-shell-teal);
}

.csl-shell-announcement__close {
    position: absolute;
    inset-inline-end: var(--csl-shell-inline);
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 0;
    border-radius: 9px;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, .65);
}

.csl-shell-announcement__close:hover {
    background: rgba(255, 255, 255, .08) !important;
    color: #fff;
}

/* Megamenu */

.csl-shell-mega {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 12px var(--csl-shell-inline) 20px;
    filter: drop-shadow(0 30px 35px rgba(16, 24, 40, .13));
}

.csl-shell-mega[hidden] {
    display: none !important;
}

.csl-shell-mega.is-entering {
    animation: cslShellMegaIn .28s var(--csl-shell-ease) both;
}

@keyframes cslShellMegaIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(.992);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.csl-shell-mega__surface {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 326px;
    gap: 24px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(82, 15, 125, .1);
    border-radius: 24px;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, .99), rgba(249, 248, 252, .98)),
        #fff;
    box-shadow: inset 0 1px rgba(255, 255, 255, .86);
}

.csl-shell-mega__eyebrow {
    margin: 0 0 13px;
    color: #8b7399;
    font-size: 11px;
    font-weight: 820;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.csl-shell-mega__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.csl-shell-mega__item {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 16px;
    align-items: center;
    min-height: 72px;
    gap: 11px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 15px;
    color: var(--csl-shell-ink);
    text-decoration: none;
    transition: border-color .18s ease, background-color .18s ease, transform .2s var(--csl-shell-ease);
}

.csl-shell-mega__item:hover,
.csl-shell-mega__item.is-active {
    border-color: rgba(82, 15, 125, .1);
    background: #fff;
    color: var(--csl-shell-purple);
    transform: translateY(-1px);
}

.csl-shell-mega__icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(82, 15, 125, .09);
    border-radius: 12px;
    background: linear-gradient(145deg, #fff, #f3edf7);
    color: var(--csl-shell-purple);
    box-shadow: 0 7px 18px rgba(82, 15, 125, .07);
}

.csl-shell-mega__copy {
    min-width: 0;
}

.csl-shell-mega__copy strong,
.csl-shell-mega__copy small {
    display: block;
}

.csl-shell-mega__copy strong {
    margin-bottom: 3px;
    color: inherit;
    font-size: 13px;
    font-weight: 780;
    line-height: 1.25;
}

.csl-shell-mega__copy small {
    overflow: hidden;
    color: #7a8495;
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.csl-shell-mega__item > svg {
    color: #a7aebb;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity .18s ease, transform .2s var(--csl-shell-ease);
}

.csl-shell-mega__item:hover > svg,
.csl-shell-mega__item.is-active > svg {
    opacity: 1;
    transform: translate(0, 0);
}

.csl-shell-mega__featured {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 19px;
    background:
        radial-gradient(circle at 78% 8%, rgba(60, 206, 194, .2), transparent 31%),
        radial-gradient(circle at 5% 90%, rgba(64, 116, 233, .23), transparent 36%),
        linear-gradient(145deg, #19082a, #10182b 72%, #08131f);
    box-shadow: inset 0 1px rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
}

.csl-shell-mega__featured::after {
    position: absolute;
    inset: 0;
    content: "";
    border-radius: inherit;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .08), transparent 70%);
    transform: translateX(-120%);
    transition: transform .8s var(--csl-shell-ease);
}

.csl-shell-mega__featured:hover {
    color: #fff;
}

.csl-shell-mega__featured:hover::after {
    transform: translateX(120%);
}

.csl-shell-mega__featured-orbit {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(2, 13px);
    grid-template-rows: repeat(2, 13px);
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 0 0 0 11px rgba(255, 255, 255, .025), 0 0 0 24px rgba(255, 255, 255, .015);
}

.csl-shell-mega__featured-orbit i {
    border-radius: 4px;
}

.csl-shell-mega__featured-copy,
.csl-shell-mega__featured-link {
    position: relative;
    z-index: 1;
}

.csl-shell-mega__featured-copy small,
.csl-shell-mega__featured-copy strong,
.csl-shell-mega__featured-copy span {
    display: block;
}

.csl-shell-mega__featured-copy small {
    margin-bottom: 8px;
    color: var(--csl-shell-teal);
    font-size: 10px;
    font-weight: 820;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.csl-shell-mega__featured-copy strong {
    max-width: 240px;
    margin-bottom: 8px;
    font-size: 19px;
    font-weight: 780;
    letter-spacing: -.025em;
    line-height: 1.18;
}

.csl-shell-mega__featured-copy span {
    max-width: 255px;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    line-height: 1.5;
}

.csl-shell-mega__featured-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    margin-top: 19px;
    color: #fff;
    font-size: 12px;
    font-weight: 750;
}

/* Mobile navigation */

.csl-shell-mobile[hidden] {
    display: none !important;
}

.csl-shell-mobile {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(430px, calc(100% - 22px));
}

.csl-shell-mobile__backdrop {
    background: rgba(8, 11, 20, .48);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    animation: cslShellFadeIn .24s ease both;
}

.csl-shell-mobile__panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100dvh;
    overflow: hidden;
    border-inline-start: 1px solid rgba(82, 15, 125, .12);
    background:
        radial-gradient(circle at 100% 0, rgba(60, 206, 194, .1), transparent 24%),
        #fff;
    box-shadow: -24px 0 60px rgba(16, 24, 40, .18);
    animation: cslShellPanelIn .32s var(--csl-shell-ease) both;
}

@keyframes cslShellFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cslShellPanelIn {
    from { opacity: 0; transform: translateX(34px); }
    to { opacity: 1; transform: translateX(0); }
}

.csl-shell-mobile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(16, 24, 40, .08);
}

.csl-shell-mobile__header .csl-shell-brand {
    width: 170px;
}

.csl-shell-mobile__close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 13px;
    background: rgba(16, 24, 40, .025) !important;
    box-shadow: none !important;
    color: var(--csl-shell-ink);
}

.csl-shell-mobile__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 18px 16px;
    overscroll-behavior: contain;
}

.csl-shell-mobile__group {
    margin: 0 0 7px;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 16px;
    background: rgba(247, 248, 252, .72);
}

.csl-shell-mobile__group-trigger,
.csl-shell-mobile__direct {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 55px;
    gap: 12px;
    padding: 13px 15px;
    border: 0;
    border-radius: 15px;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--csl-shell-ink);
    font: inherit;
    font-size: 16px;
    font-weight: 760;
    line-height: 1.2;
    text-align: start;
    text-decoration: none;
}

.csl-shell-mobile__direct {
    margin-bottom: 7px;
    border: 1px solid rgba(16, 24, 40, .08);
    background: rgba(247, 248, 252, .72) !important;
}

.csl-shell-mobile__group-trigger[aria-expanded="true"] {
    color: var(--csl-shell-purple);
}

.csl-shell-mobile__group-trigger svg {
    transition: transform .24s var(--csl-shell-ease);
}

.csl-shell-mobile__group-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.csl-shell-mobile__group-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 0 8px 8px;
}

.csl-shell-mobile__group-panel[hidden] {
    display: none !important;
}

.csl-shell-mobile__group-panel a {
    display: grid;
    grid-template-columns: 31px minmax(0, 1fr);
    align-items: center;
    min-height: 51px;
    gap: 8px;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: #475467;
    font-size: 12px;
    text-decoration: none;
}

.csl-shell-mobile__group-panel a:hover,
.csl-shell-mobile__group-panel a[aria-current="page"] {
    border-color: rgba(82, 15, 125, .1);
    background: #fff;
    color: var(--csl-shell-purple);
}

.csl-shell-mobile__group-panel a > span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    background: rgba(82, 15, 125, .065);
}

.csl-shell-mobile__group-panel strong {
    overflow-wrap: anywhere;
    font-weight: 700;
    line-height: 1.25;
}

.csl-shell-mobile__footer {
    display: grid;
    gap: 9px;
    padding: 14px 16px max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(16, 24, 40, .08);
    background: rgba(255, 255, 255, .95);
}

.csl-shell-mobile__utility {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.csl-shell-mobile__utility > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 39px;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 11px;
    color: #475467;
    font-size: 12px;
    font-weight: 680;
}

.csl-shell-mobile__utility > div.has-control {
    justify-content: center;
    padding: 4px 8px;
}

.csl-shell-mobile__utility > div.has-control > span,
.csl-shell-mobile__utility > div.has-control > small,
.csl-shell-mobile__utility > div.has-control > svg {
    display: none;
}

.csl-shell-mobile__utility > div.has-control > .csptl,
.csl-shell-mobile__utility > div.has-control > .csptl-language,
.csl-shell-mobile__utility > div.has-control > .csl-shell-launcher-fallback,
.csl-shell-mobile__utility > div.has-control > .csl-shell-language-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

.csl-shell-mobile__utility small {
    display: grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 8px;
    background: rgba(82, 15, 125, .07);
    color: var(--csl-shell-purple);
    font-size: 10px;
}

.csl-shell-mobile__login,
.csl-shell-mobile__cta {
    min-height: 46px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 760;
}

.csl-shell-mobile__login {
    display: grid;
    place-items: center;
    border: 1px solid rgba(82, 15, 125, .18);
    color: var(--csl-shell-purple);
    text-decoration: none;
}

/* Closing CTA */

.csl-shell-closing {
    position: relative;
    overflow: hidden;
    padding: clamp(68px, 8vw, 108px) 0;
    background:
        linear-gradient(180deg, transparent, rgba(82, 15, 125, .025)),
        var(--csl-shell-canvas);
    color: var(--csl-shell-ink);
    font-family: var(--csl-font, Inter, ui-sans-serif, system-ui, sans-serif);
}

.csl-shell-closing__surface {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 44px;
    min-height: 310px;
    padding: clamp(34px, 5vw, 68px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: clamp(24px, 3vw, 36px);
    background:
        radial-gradient(circle at 86% 0, rgba(60, 206, 194, .14), transparent 31%),
        radial-gradient(circle at 0 100%, rgba(64, 116, 233, .19), transparent 36%),
        linear-gradient(130deg, #160720, #101225 50%, #071525);
    box-shadow: 0 32px 74px rgba(16, 24, 40, .18), inset 0 1px rgba(255, 255, 255, .08);
    color: #fff;
}

.csl-shell-closing__surface::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
    pointer-events: none;
}

.csl-shell-closing__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.csl-shell-closing__glow--one {
    top: -100px;
    right: 11%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(60, 206, 194, .18);
    box-shadow: 0 0 70px rgba(60, 206, 194, .13), inset 0 0 60px rgba(60, 206, 194, .04);
}

.csl-shell-closing__glow--two {
    right: -70px;
    bottom: -160px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(64, 116, 233, .2);
    box-shadow: 0 0 90px rgba(64, 116, 233, .12);
}

.csl-shell-closing__copy,
.csl-shell-closing__actions {
    position: relative;
    z-index: 1;
}

.csl-shell-closing__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--csl-shell-teal);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.csl-shell-closing h2 {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 55px);
    font-weight: 760;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.csl-shell-closing p {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.65;
}

.csl-shell-closing__actions {
    display: grid;
    min-width: 210px;
    gap: 11px;
}

.csl-shell-closing__actions a {
    min-height: 50px;
    padding: 13px 19px;
    text-decoration: none;
}

.csl-shell-closing__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 13px;
    background: rgba(255, 255, 255, .055);
    color: #fff;
    font-size: 13px;
    font-weight: 730;
    transition: background-color .18s ease, border-color .18s ease, transform .2s var(--csl-shell-ease);
}

.csl-shell-closing__secondary:hover {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transform: translateY(-2px);
}

/* Gateway footer */

.csl-shell-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(66px, 7vw, 96px) 0 0;
    border: 0;
    background:
        radial-gradient(circle at 13% 0, rgba(82, 15, 125, .18), transparent 26%),
        radial-gradient(circle at 88% 7%, rgba(60, 206, 194, .08), transparent 22%),
        var(--csl-shell-night);
    color: rgba(255, 255, 255, .68);
    font-family: var(--csl-font, Inter, ui-sans-serif, system-ui, sans-serif);
}

.csl-shell-footer__aurora {
    position: absolute;
    top: -1px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--csl-shell-purple), var(--csl-shell-teal), var(--csl-shell-blue), transparent);
    box-shadow: 0 0 34px rgba(60, 206, 194, .22);
}

.csl-shell-footer__top {
    display: grid;
    grid-template-columns: minmax(250px, .92fr) minmax(0, 2.1fr);
    gap: clamp(48px, 7vw, 110px);
}

.csl-shell-footer__brand {
    max-width: 340px;
}

.csl-shell-footer__logo {
    display: inline-flex;
    width: min(222px, 100%);
    margin-bottom: 22px;
    border-radius: 10px;
}

.csl-shell-footer__logo img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: .96;
}

.csl-shell-footer__brand > p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    line-height: 1.7;
}

.csl-shell-footer__ecosystem {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 17px;
    align-items: center;
    gap: 11px;
    margin-top: 27px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
    color: #fff;
    text-decoration: none;
    transition: border-color .18s ease, background-color .18s ease, transform .2s var(--csl-shell-ease);
}

.csl-shell-footer__ecosystem:hover {
    border-color: rgba(60, 206, 194, .27);
    background: rgba(255, 255, 255, .065);
    color: #fff;
    transform: translateY(-2px);
}

.csl-shell-footer__tiles {
    display: grid;
    grid-template-columns: repeat(2, 9px);
    grid-template-rows: repeat(2, 9px);
    gap: 3px;
    width: 38px;
    height: 38px;
    place-content: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, .06);
}

.csl-shell-footer__tiles i {
    border-radius: 3px;
}

.csl-shell-footer__ecosystem span:nth-child(2) {
    min-width: 0;
}

.csl-shell-footer__ecosystem small,
.csl-shell-footer__ecosystem strong {
    display: block;
}

.csl-shell-footer__ecosystem small {
    margin-bottom: 1px;
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.csl-shell-footer__ecosystem strong {
    color: #fff;
    font-size: 12px;
    font-weight: 720;
    line-height: 1.25;
}

.csl-shell-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.csl-shell-footer__column h2 {
    margin: 0 0 19px;
    color: rgba(255, 255, 255, .9);
    font-size: 11px;
    font-weight: 780;
    letter-spacing: .075em;
    line-height: 1.3;
    text-transform: uppercase;
}

.csl-shell-footer__column ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.csl-shell-footer__column a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .52);
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
    transition: color .18s ease, transform .18s var(--csl-shell-ease);
}

.csl-shell-footer__column a svg {
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity .18s ease, transform .18s var(--csl-shell-ease);
}

.csl-shell-footer__column a:hover,
.csl-shell-footer__column a[aria-current="page"] {
    color: #fff;
    transform: translateX(2px);
}

.csl-shell-footer__column a:hover svg,
.csl-shell-footer__column a[aria-current="page"] svg {
    opacity: .72;
    transform: translate(0, 0);
}

.csl-shell-footer__divider {
    height: 1px;
    margin: clamp(48px, 6vw, 74px) 0 28px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
}

.csl-shell-footer__company-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.csl-shell-footer__company {
    display: flex;
    flex-wrap: wrap;
    max-width: 820px;
    gap: 5px 12px;
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
    line-height: 1.55;
}

.csl-shell-footer__company strong {
    width: 100%;
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    letter-spacing: .025em;
}

.csl-shell-footer__company a {
    color: var(--csl-shell-teal);
    text-decoration: none;
}

.csl-shell-footer__social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.csl-shell-footer__social a {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .58);
    transition: border-color .18s ease, background-color .18s ease, color .18s ease, transform .2s var(--csl-shell-ease);
}

.csl-shell-footer__social a:hover {
    border-color: rgba(60, 206, 194, .28);
    background: rgba(60, 206, 194, .08);
    color: #fff;
    transform: translateY(-2px);
}

.csl-shell-footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 18px 0 max(22px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .32);
    font-size: 10px;
    line-height: 1.5;
}

.csl-shell-footer__legal p {
    margin: 0;
    color: inherit;
    font: inherit;
}

.csl-shell-footer__legal nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 18px;
}

.csl-shell-footer__legal a {
    color: rgba(255, 255, 255, .44);
    text-decoration: none;
}

.csl-shell-footer__legal a:hover {
    color: #fff;
}

/* Legal and campaign variants */

.csl-shell-variant-legal .csl-shell-nav__cta,
.csl-shell-variant-campaign .csl-shell-nav__login {
    display: none;
}

.csl-shell-variant-campaign .csl-shell-nav__primary {
    opacity: .88;
}

/* Investor conversion isolation. The route has its own qualified contact
   flow, so global utility widgets and the generic platform CTA are suppressed. */

.csl-page-inwestorzy #csp-fab-root,
.csl-page-inwestorzy .csp-fab,
.csl-page-inwestorzy .csl-widget,
.csl-page-inwestorzy .csl-shell-nav__cta,
.csl-page-inwestorzy .csl-shell-nav__login,
.csl-page-inwestorzy .csl-shell-mobile__cta,
.csl-page-inwestorzy .csl-shell-mobile__login,
.csl-page-inwestorzy [data-csl-shell-mobile-launcher-slot] {
    display: none !important;
}

/* The solutions hub owns its complete decision and contact path. Suppress the
   floating assistant so it cannot cover the hero decision map or duplicate
   the qualified brief and presentation actions. */

.csl-page-rozwiazania #csp-fab-root,
.csl-page-rozwiazania .csp-fab {
    display: none !important;
}

.csl-page-inwestorzy [hidden] {
    display: none !important;
}

.csl-page-inwestorzy .csl-shell-nav__inner,
.csl-page-inwestorzy .csl-shell-nav__brand-zone,
.csl-page-inwestorzy .csl-shell-brand,
.csl-page-inwestorzy .csl-shell-brand img {
    max-width: 100% !important;
}

.csl-page-inwestorzy .csl-shell-brand img {
    height: auto !important;
    width: 188px !important;
}

.csl-page-inwestorzy .csptl__trigger,
.csl-page-inwestorzy .csl-shell-nav__mobile-trigger {
    min-height: 44px;
    min-width: 44px;
}

.csl-page-inwestorzy .csl-shell-footer__company a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.csl-page-inwestorzy .csl-inv__market-footer .csl-btn--outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.csl-page-inwestorzy .csl-hero--inv .csl-btn--primary {
    background: #520f7d;
    color: #fff;
}

@media (max-width: 420px) {
    .csl-page-inwestorzy .csl-shell-brand img {
        width: 132px !important;
    }
}

/* RTL */

html[dir="rtl"] .csl-shell-mega__item > svg,
html[dir="rtl"] .csl-shell-footer__column a svg {
    transform: scaleX(-1) translate(-4px, 4px);
}

html[dir="rtl"] .csl-shell-mega__item:hover > svg,
html[dir="rtl"] .csl-shell-mega__item.is-active > svg,
html[dir="rtl"] .csl-shell-footer__column a:hover svg,
html[dir="rtl"] .csl-shell-footer__column a[aria-current="page"] svg {
    transform: scaleX(-1) translate(0, 0);
}

html[dir="rtl"] .csl-shell-mobile {
    grid-template-columns: min(430px, calc(100% - 22px)) minmax(0, 1fr);
}

html[dir="rtl"] .csl-shell-mobile__panel {
    grid-column: 1;
    grid-row: 1;
    box-shadow: 24px 0 60px rgba(16, 24, 40, .18);
    animation-name: cslShellPanelInRtl;
}

html[dir="rtl"] .csl-shell-mobile__backdrop {
    grid-column: 2;
}

@keyframes cslShellPanelInRtl {
    from { opacity: 0; transform: translateX(-34px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */

@media (max-width: 1240px) {
    .csl-shell-nav__inner {
        grid-template-columns: minmax(206px, .8fr) auto minmax(250px, .8fr);
        gap: 14px;
    }

    .csl-shell-brand {
        flex-basis: 166px;
    }

    .csl-shell-nav__item {
        padding-inline: 9px;
        font-size: 13px;
    }

    .csl-shell-nav__login {
        display: none;
    }

    .csl-shell-mega__surface {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}

@media (max-width: 1060px) {
    .csl-shell-nav__inner {
        display: flex;
        justify-content: space-between;
    }

    .csl-shell-nav__primary {
        display: none;
    }

    .csl-shell-nav__actions {
        margin-inline-start: auto;
    }

    .csl-shell-nav__mobile-trigger {
        display: grid;
    }

    .csl-shell-mega {
        display: none !important;
    }
}

@media (max-width: 820px) {
    :root {
        --csl-shell-header-height: 68px;
    }

    .csl-shell-body {
        --csl-shell-inline: 18px;
    }

    .csl-shell-nav__brand-zone {
        gap: 8px;
    }

    .csl-shell-brand {
        flex-basis: 151px;
        min-width: 108px;
    }

    .csl-shell-nav__divider {
        height: 23px;
    }

    .csl-shell-nav__cta span {
        display: none;
    }

    .csl-shell-nav__cta {
        width: 42px;
        min-width: 42px;
        padding: 0;
    }

    .csl-shell-closing__surface {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .csl-shell-closing__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }

    .csl-shell-footer__top {
        grid-template-columns: 1fr;
    }

    .csl-shell-footer__brand {
        max-width: 430px;
    }

    .csl-shell-footer__nav {
        gap: 28px 20px;
    }
}

@media (max-width: 620px) {
    .csl-shell-nav__language {
        display: none;
    }

    .csl-shell-nav__launcher {
        width: 38px;
        height: 38px;
    }

    .csl-shell-announcement__inner {
        justify-content: flex-start;
        padding-inline-end: 40px;
    }

    .csl-shell-announcement__spark {
        display: none;
    }

    .csl-shell-announcement p {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .csl-shell-announcement a {
        flex: none;
    }

    .csl-shell-announcement__close {
        inset-inline-end: 10px;
    }

    .csl-shell-mobile {
        grid-template-columns: 1fr min(430px, calc(100% - 10px));
    }

    html[dir="rtl"] .csl-shell-mobile {
        grid-template-columns: min(430px, calc(100% - 10px)) 1fr;
    }

    .csl-shell-closing {
        padding-block: 54px;
    }

    .csl-shell-closing__surface {
        min-height: 0;
        padding: 31px 23px;
        border-radius: 24px;
    }

    .csl-shell-closing__actions {
        grid-template-columns: 1fr;
    }

    .csl-shell-footer {
        padding-top: 58px;
    }

    .csl-shell-footer__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .csl-shell-footer__company-row,
    .csl-shell-footer__legal {
        align-items: flex-start;
        flex-direction: column;
    }

    .csl-shell-footer__legal nav {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .csl-shell-nav__inner {
        gap: 8px;
    }

    .csl-shell-brand {
        flex-basis: 132px;
    }

    .csl-shell-nav__divider,
    .csl-shell-nav__launcher {
        display: none;
    }

    .csl-shell-mobile__group-panel {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .csl-shell-header *,
    .csl-shell-header *::before,
    .csl-shell-header *::after,
    .csl-shell-closing *,
    .csl-shell-closing *::before,
    .csl-shell-footer *,
    .csl-shell-footer *::before {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media print {
    .csl-shell-header,
    .csl-shell-closing,
    .csl-shell-mobile,
    .csl-shell-footer__social {
        display: none !important;
    }
}
