body.public-ecosystem-page,
body.public-ecosystem-page * {
    box-sizing: border-box;
}

body.public-ecosystem-page {
    --lz-bg: #050505;
    --lz-panel: #101010;
    --lz-panel-soft: #0c0c0c;
    --lz-panel-muted: #141414;
    --lz-line: rgba(255, 255, 255, 0.09);
    --lz-line-soft: rgba(255, 255, 255, 0.06);
    --lz-line-strong: rgba(255, 255, 255, 0.14);
    --lz-text: #f5f5f5;
    --lz-muted: #a1a1aa;
    --lz-dim: #71717a;
    --lz-faint: #52525b;
    --lz-accent: #00f0c2;
    --lz-accent-strong: #36ffd8;
    --lz-accent-rgb: 0, 240, 194;
    --lz-accent-strong-rgb: 54, 255, 216;
    --lz-radius-control: 8px;
    --lz-width-page: 1520px;
    --lz-font: "Instrument Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --lz-btn-height: 50px;
    min-height: 100vh;
    margin: 0;
    background: var(--lz-bg);
    color: var(--lz-text);
    font-family: var(--lz-font);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body.public-ecosystem-page.is-mobile-nav-open {
    overflow: hidden;
}

body.public-ecosystem-page a {
    color: inherit;
    text-decoration: none;
}

body.public-ecosystem-page button,
body.public-ecosystem-page input,
body.public-ecosystem-page select,
body.public-ecosystem-page textarea {
    font: inherit;
}

body.public-ecosystem-page img,
body.public-ecosystem-page svg {
    display: block;
}

body.public-ecosystem-page .lz-container {
    width: min(var(--lz-width-page), calc(100vw - 56px));
    margin-inline: auto;
}

body.public-ecosystem-page .lz-ambient-glow {
    position: fixed;
    inset: -28vh -18vw auto;
    z-index: -1;
    height: 48vh;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 20%, rgba(77, 171, 154, 0.14), transparent 34%),
        radial-gradient(circle at 78% 12%, rgba(91, 196, 176, 0.08), transparent 30%);
    filter: blur(8px);
}

body.public-ecosystem-page .app-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 55px;
    padding: 0 18px;
    border: 1px solid var(--app-action-border, rgba(255, 255, 255, 0.1));
    border-radius: var(--lz-radius-control);
    background: var(--app-action-bg, rgba(255, 255, 255, 0.04));
    color: var(--app-action-color, rgba(245, 245, 245, 0.78));
    font-size: 15px;
    font-weight: 720;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

body.public-ecosystem-page .app-action-btn:hover {
    border-color: var(--app-action-border-hover, rgba(255, 255, 255, 0.16));
    background: var(--app-action-bg-hover, rgba(255, 255, 255, 0.08));
    color: var(--app-action-color-hover, #ffffff);
}

body.public-ecosystem-page .app-action-btn-primary {
    border-color: rgba(var(--lz-accent-rgb), 0.7);
    background: var(--lz-accent);
    color: #050507;
    font-weight: 760;
    box-shadow: 0 0 24px rgba(var(--lz-accent-rgb), 0.14);
}

body.public-ecosystem-page .app-action-btn-primary:hover {
    border-color: rgba(var(--lz-accent-strong-rgb), 0.82);
    background: var(--lz-accent-strong);
    color: #050507;
    transform: translateY(-1px);
}

body.public-ecosystem-page .app-action-btn svg,
body.public-ecosystem-page .app-action-btn i {
    width: 14px;
    min-width: 14px;
    height: 14px;
    flex: 0 0 14px;
    stroke-width: 2;
}

body.public-ecosystem-page .lz-nav {
    --lz-nav-shell-top: 6px;
    --lz-nav-shell-height: 74px;
    --lz-nav-shell-pad-y: 5px;
    --lz-nav-shell-width: min(var(--lz-width-page), calc(100vw - 84px));
    position: fixed;
    top: var(--lz-nav-shell-top);
    right: 0;
    left: 0;
    z-index: 1600;
    padding: var(--lz-nav-shell-pad-y) 0;
    border-bottom: 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: none;
    transition: top 0.24s cubic-bezier(0.2, 0.78, 0.2, 1);
}

body.public-ecosystem-page.has-top-offer:not(.is-offer-collapsed) .lz-nav {
    --lz-nav-shell-top: 52px;
}

body.public-ecosystem-page .lz-nav::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.46) 100%),
        radial-gradient(ellipse at 50% 9%, rgba(106, 205, 190, 0.035), transparent 48%);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition:
        opacity 0.18s ease,
        backdrop-filter 0.18s ease,
        -webkit-backdrop-filter 0.18s ease;
}

body.public-ecosystem-page .lz-nav:has(.lz-nav-item--mega:hover)::before,
body.public-ecosystem-page .lz-nav:has(.lz-nav-item--mega:focus-within)::before {
    opacity: 1;
    backdrop-filter: blur(1.6px);
    -webkit-backdrop-filter: blur(1.6px);
}

body.public-ecosystem-page .lz-nav:has(.lz-nav-item--mega:hover),
body.public-ecosystem-page .lz-nav:has(.lz-nav-item--mega:focus-within) {
    z-index: 2400;
}

body.public-ecosystem-page .lz-nav .lz-container {
    position: relative;
    z-index: 2;
    width: var(--lz-nav-shell-width);
}

body.public-ecosystem-page .lz-nav-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(270px, 330px) minmax(0, 1fr) minmax(210px, 250px);
    align-items: center;
    min-height: var(--lz-nav-shell-height);
    padding: 0 12px 0 26px;
    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 18px 70px rgba(0, 0, 0, 0.34);
    pointer-events: auto;
}

body.public-ecosystem-page .lz-nav:has(.lz-nav-item--mega:hover) .lz-nav-shell,
body.public-ecosystem-page .lz-nav:has(.lz-nav-item--mega:focus-within) .lz-nav-shell {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: #020202;
}

body.public-ecosystem-page .lz-nav-brand,
body.public-ecosystem-page .lz-footer-brand-top {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    text-decoration: none;
}

body.public-ecosystem-page .lz-nav-brand {
    position: relative;
    z-index: 2;
    grid-column: 1;
    justify-self: start;
    gap: 13px;
}

body.public-ecosystem-page .lz-nav-logo-lockup {
    display: block;
    width: 82px;
    height: auto;
    max-height: 22px;
    object-fit: contain;
}

body.public-ecosystem-page .lz-nav-brand-name {
    display: inline-block;
    color: rgba(245, 245, 245, 0.62);
    font-size: 13.5px;
    font-weight: 620;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

body.public-ecosystem-page .lz-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--lz-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--lz-text);
}

body.public-ecosystem-page .lz-nav-toggle i,
body.public-ecosystem-page .lz-nav-toggle svg {
    width: 20px;
    height: 20px;
}

body.public-ecosystem-page .lz-nav-links-wrap,
body.public-ecosystem-page .lz-nav-links,
body.public-ecosystem-page .lz-nav-actions {
    display: flex;
    align-items: center;
}

body.public-ecosystem-page .lz-nav-links-wrap {
    position: static;
    display: grid;
    grid-column: 2 / 4;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 250px);
    align-self: stretch;
    justify-self: stretch;
    align-items: center;
    gap: 0;
    min-width: 0;
}

body.public-ecosystem-page .lz-nav-links-wrap::before {
    display: none;
}

body.public-ecosystem-page .lz-nav-links {
    position: static;
    justify-self: center;
    justify-content: center;
    gap: 4px;
}

body.public-ecosystem-page .lz-nav-actions {
    position: relative;
    z-index: 2;
    justify-self: end;
    align-self: stretch;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    padding-left: 24px;
}

body.public-ecosystem-page .lz-nav-actions::before {
    display: none;
}

body.public-ecosystem-page .lz-nav-item {
    position: static;
    display: inline-flex;
    align-items: center;
}

body.public-ecosystem-page .lz-nav-item--mega::after {
    display: none;
}

body.public-ecosystem-page .lz-nav-links a,
body.public-ecosystem-page .lz-nav-login,
body.public-ecosystem-page .lz-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(245, 245, 245, 0.72);
    font-size: 15px;
    font-weight: 620;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

body.public-ecosystem-page .lz-nav-links a {
    min-height: 44px;
    padding: 0 10px;
    border-radius: 14px;
}

body.public-ecosystem-page .lz-nav-item--mega > .lz-nav-link {
    min-height: 44px;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 14px;
}

body.public-ecosystem-page .lz-nav-links .lz-nav-link-pricing {
    color: rgba(245, 245, 245, 0.82);
    font-weight: 660;
}

body.public-ecosystem-page .lz-nav-links a:hover,
body.public-ecosystem-page .lz-nav-login:hover,
body.public-ecosystem-page .lz-nav-item--mega:hover > .lz-nav-link,
body.public-ecosystem-page .lz-nav-item--mega:focus-within > .lz-nav-link,
body.public-ecosystem-page .lz-nav-item--mega.is-mega-active > .lz-nav-link {
    border-color: rgba(255, 255, 255, 0.075);
    background: rgba(255, 255, 255, 0.042);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

body.public-ecosystem-page .lz-nav-link i,
body.public-ecosystem-page .lz-nav-link svg {
    width: 11px;
    height: 11px;
    opacity: 0.58;
    stroke-width: 2.3;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

body.public-ecosystem-page .lz-nav-item--mega:hover .lz-nav-link i,
body.public-ecosystem-page .lz-nav-item--mega:hover .lz-nav-link svg,
body.public-ecosystem-page .lz-nav-item--mega:focus-within .lz-nav-link i,
body.public-ecosystem-page .lz-nav-item--mega:focus-within .lz-nav-link svg,
body.public-ecosystem-page .lz-nav-item--mega.is-mega-active .lz-nav-link i,
body.public-ecosystem-page .lz-nav-item--mega.is-mega-active .lz-nav-link svg {
    opacity: 1;
    transform: rotate(180deg);
}

body.public-ecosystem-page .lz-nav-login {
    padding: 0 12px;
}

body.public-ecosystem-page .lz-nav-cta {
    min-height: var(--lz-btn-height);
    padding: 0 22px;
    border-radius: var(--lz-radius-control);
    color: #050507;
    font-weight: 760;
}

body.public-ecosystem-page .lz-nav-cta:hover {
    border-color: rgba(var(--lz-accent-strong-rgb), 0.82);
    background: var(--lz-accent-strong);
    color: #050507;
}

body.public-ecosystem-page .lz-nav-mega {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    z-index: 2401;
    display: grid;
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
    gap: 34px;
    width: var(--lz-nav-shell-width);
    min-height: 0;
    padding: 28px 42px 30px;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-top: 0 !important;
    border-radius: 0 0 14px 14px;
    background: #020202 !important;
    box-shadow: 0 32px 86px rgba(0, 0, 0, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-8px) scaleY(0.985);
    transform-origin: top center;
    transition:
        opacity 0.22s ease,
        transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s linear 0.14s;
}

body.public-ecosystem-page .lz-nav-item--mega:hover .lz-nav-mega,
body.public-ecosystem-page .lz-nav-item--mega:focus-within .lz-nav-mega,
body.public-ecosystem-page .lz-nav-item--mega.is-mega-active .lz-nav-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition:
        opacity 0.22s ease,
        transform 0.26s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s;
}

body.public-ecosystem-page .lz-nav-mega--covers,
body.public-ecosystem-page .lz-nav-mega--data,
body.public-ecosystem-page .lz-nav-mega--prop,
body.public-ecosystem-page .lz-nav-mega--company {
    min-height: 0;
}

body.public-ecosystem-page .lz-nav-mega-copy {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 4px 38px 4px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

body.public-ecosystem-page .lz-nav-mega-copy > *,
body.public-ecosystem-page .lz-nav-resource-column,
body.public-ecosystem-page .lz-nav-dashboard-card,
body.public-ecosystem-page .lz-nav-cover-card {
    opacity: 0.62;
    transform: translateY(6px);
    transition:
        opacity 0.16s ease,
        transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

body.public-ecosystem-page .lz-nav-item--mega:hover .lz-nav-mega-copy > *,
body.public-ecosystem-page .lz-nav-item--mega:focus-within .lz-nav-mega-copy > *,
body.public-ecosystem-page .lz-nav-item--mega.is-mega-active .lz-nav-mega-copy > *,
body.public-ecosystem-page .lz-nav-item--mega:hover .lz-nav-resource-column,
body.public-ecosystem-page .lz-nav-item--mega:focus-within .lz-nav-resource-column,
body.public-ecosystem-page .lz-nav-item--mega.is-mega-active .lz-nav-resource-column,
body.public-ecosystem-page .lz-nav-item--mega:hover .lz-nav-dashboard-card,
body.public-ecosystem-page .lz-nav-item--mega:focus-within .lz-nav-dashboard-card,
body.public-ecosystem-page .lz-nav-item--mega.is-mega-active .lz-nav-dashboard-card,
body.public-ecosystem-page .lz-nav-item--mega:hover .lz-nav-cover-card,
body.public-ecosystem-page .lz-nav-item--mega:focus-within .lz-nav-cover-card,
body.public-ecosystem-page .lz-nav-item--mega.is-mega-active .lz-nav-cover-card {
    opacity: 1;
    transform: translateY(0);
}

body.public-ecosystem-page .lz-nav-mega-copy span,
body.public-ecosystem-page .lz-nav-resource-column span {
    color: rgba(212, 212, 216, 0.46);
    font-size: 11px;
    font-weight: 780;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

body.public-ecosystem-page .lz-nav-mega-copy strong {
    max-width: 15.5ch;
    color: var(--lz-text);
    font-size: 27px;
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1.04;
}

body.public-ecosystem-page .lz-nav-mega-copy p {
    max-width: 29ch;
    margin: 0;
    color: rgba(212, 212, 216, 0.66);
    font-size: 13.5px;
    font-weight: 540;
    line-height: 1.48;
}

body.public-ecosystem-page .lz-nav-links .lz-nav-mega-copy-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 34px;
    margin-top: 6px;
    padding: 0 12px;
    border: 1px solid rgba(var(--lz-accent-rgb), 0.28);
    border-radius: 999px;
    background: rgba(var(--lz-accent-rgb), 0.07);
    color: rgba(199, 255, 244, 0.92);
    font-size: 12px;
    font-weight: 760;
    line-height: 1;
}

body.public-ecosystem-page .lz-nav-mega-copy-cta svg,
body.public-ecosystem-page .lz-nav-mega-copy-cta i {
    width: 12px;
    height: 12px;
    stroke-width: 2.2;
}

body.public-ecosystem-page .lz-nav-resource-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 0;
    overflow: visible;
    padding-top: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

body.public-ecosystem-page .lz-nav-resource-columns--platform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 3vw, 42px);
    min-height: 100%;
}

body.public-ecosystem-page .lz-nav-resource-columns--data,
body.public-ecosystem-page .lz-nav-resource-columns--company {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.public-ecosystem-page .lz-nav-resource-columns--prop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.public-ecosystem-page .lz-nav-resource-column,
body.public-ecosystem-page .lz-nav-resource-columns--prop .lz-nav-resource-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
    min-width: 0;
    padding: 2px 26px 2px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

body.public-ecosystem-page .lz-nav-resource-column + .lz-nav-resource-column,
body.public-ecosystem-page .lz-nav-resource-columns--prop .lz-nav-resource-column + .lz-nav-resource-column {
    padding-left: 26px;
}

body.public-ecosystem-page .lz-nav-resource-column:last-child {
    border-right: 0;
}

body.public-ecosystem-page .lz-nav-resource-column span {
    margin-bottom: 4px;
}

body.public-ecosystem-page .lz-nav-resource-column a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 24px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(245, 245, 245, 0.72);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    white-space: normal;
}

body.public-ecosystem-page .lz-nav-resource-column a:hover {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.95);
}

body.public-ecosystem-page .lz-nav-resource-column a svg,
body.public-ecosystem-page .lz-nav-resource-column a i {
    width: 12px;
    min-width: 12px;
    height: 12px;
    flex: 0 0 12px;
    color: rgba(159, 228, 216, 0.86);
    opacity: 0.95;
    stroke-width: 2.2;
}

body.public-ecosystem-page .lz-nav-platform-layout {
    display: grid;
    grid-template-columns: minmax(270px, 330px) minmax(0, 1fr);
    gap: clamp(28px, 3vw, 40px);
    align-items: start;
    min-width: 0;
}

body.public-ecosystem-page .lz-nav-prop-layout {
    display: grid;
    gap: 28px;
    min-width: 0;
}

body.public-ecosystem-page .lz-nav-links .lz-nav-dashboard-card {
    position: relative;
    isolation: isolate;
    display: grid;
    align-content: start;
    gap: 9px;
    min-height: 0;
    margin-top: -6px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(245, 245, 245, 0.92);
    text-decoration: none;
    box-shadow: none;
}

body.public-ecosystem-page .lz-nav-links .lz-nav-dashboard-card:hover {
    background: transparent;
}

body.public-ecosystem-page .lz-nav-dashboard-frame {
    display: block;
    padding: 9px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

body.public-ecosystem-page .lz-nav-dashboard-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 0;
    border-radius: 7px;
    background: #050606;
    object-fit: cover;
    object-position: center top;
    opacity: 0.86;
    filter: saturate(0.98) contrast(1.05) brightness(0.86);
    transform: scale(1);
    transition:
        opacity 0.22s ease,
        transform 0.26s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.22s ease;
}

body.public-ecosystem-page .lz-nav-dashboard-card-copy {
    display: grid;
    gap: 0;
    padding: 0;
}

body.public-ecosystem-page .lz-nav-dashboard-card-copy strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    color: rgba(245, 245, 245, 0.94);
    font-size: 14.5px;
    font-weight: 780;
    line-height: 1.08;
}

body.public-ecosystem-page .lz-nav-dashboard-card-copy svg,
body.public-ecosystem-page .lz-nav-dashboard-card-copy i {
    width: 13px;
    height: 13px;
    color: rgba(159, 228, 216, 0.9);
    stroke-width: 2.2;
}

body.public-ecosystem-page .lz-nav-dashboard-card:hover .lz-nav-dashboard-frame {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

body.public-ecosystem-page .lz-nav-dashboard-card:hover .lz-nav-dashboard-frame img {
    opacity: 0.96;
    filter: saturate(1.02) contrast(1.06) brightness(0.94);
    transform: scale(1.012);
}

body.public-ecosystem-page .lz-nav-prop-covers {
    display: none;
}

body.public-ecosystem-page .lz-nav-cover-card {
    position: relative;
    isolation: isolate;
    display: grid;
    align-content: start;
    gap: 0;
    min-width: 0;
    min-height: 128px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 12px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(var(--lz-accent-rgb), 0.045), transparent 70%),
        rgba(255, 255, 255, 0.022);
    color: rgba(245, 245, 245, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

body.public-ecosystem-page .lz-nav-cover-media {
    display: none;
}

body.public-ecosystem-page .lz-nav-cover-body {
    display: grid;
    gap: 6px;
    padding: 17px 14px 15px;
}

body.public-ecosystem-page .lz-nav-cover-body span {
    color: rgba(245, 245, 245, 0.92);
    font-size: 14.5px;
    font-weight: 760;
    line-height: 1.12;
}

body.public-ecosystem-page .lz-nav-cover-body small {
    color: rgba(212, 212, 216, 0.58);
    font-size: 11.5px;
    font-weight: 540;
    line-height: 1.35;
}

body.public-ecosystem-page .trust-page,
body.public-ecosystem-page .pf-page,
body.public-ecosystem-page .offers-page,
body.public-ecosystem-page .challenge-page,
body.public-ecosystem-page .firm-profile,
body.public-ecosystem-page .matcher-page,
body.public-ecosystem-page .rankings-page,
body.public-ecosystem-page .availability-intent,
body.public-ecosystem-page .country-page,
body.public-ecosystem-page .partner-prop-page {
    padding-top: clamp(104px, 9vw, 128px) !important;
}

body.public-ecosystem-page .lz-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: clamp(56px, 8vw, 110px);
    padding: 0;
    border-top: 1px solid var(--lz-line-soft);
    background: var(--lz-bg);
}

body.public-ecosystem-page .lz-footer > .lz-container {
    position: relative;
    z-index: 1;
}

body.public-ecosystem-page .lz-footer-watermark {
    position: absolute;
    left: 50%;
    bottom: clamp(-260px, -8vw, -120px);
    z-index: 0;
    width: clamp(1400px, 118vw, 2480px);
    max-width: none;
    height: auto;
    opacity: 0.018;
    filter: grayscale(1) brightness(2.4) blur(0.1px);
    pointer-events: none;
    user-select: none;
    transform: translateX(-50%);
}

body.public-ecosystem-page .lz-footer-hero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100vw;
    min-height: 282px;
    margin-left: 50%;
    padding: 58px max(28px, calc((100vw - var(--lz-width-page)) / 2)) 46px;
    border-top: 1px solid var(--lz-line-soft);
    border-bottom: 0;
    text-align: left;
    transform: translateX(-50%);
    isolation: isolate;
}

body.public-ecosystem-page .lz-footer-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
    width: min(var(--lz-width-page), 100%);
    margin: 0 auto;
}

body.public-ecosystem-page .lz-footer-hero-side {
    display: grid;
    justify-items: end;
    align-content: center;
    width: 100%;
}

body.public-ecosystem-page .lz-footer-title {
    max-width: 16ch;
    margin: 0;
    color: var(--lz-text);
    font-size: clamp(42px, 3.8vw, 62px);
    font-weight: 760;
    line-height: 0.96;
    letter-spacing: 0;
    text-wrap: balance;
}

body.public-ecosystem-page .lz-footer-title span {
    color: rgba(245, 245, 245, 0.42);
}

body.public-ecosystem-page .lz-footer-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 520px);
    margin-top: 0;
}

body.public-ecosystem-page .lz-footer-cta,
body.public-ecosystem-page .lz-footer-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

body.public-ecosystem-page .lz-footer-cta,
body.public-ecosystem-page .lz-footer-hero .lz-footer-cta.app-action-btn-primary {
    border-color: rgba(var(--lz-accent-rgb), 0.34);
    background: rgba(var(--lz-accent-rgb), 0.1);
    color: var(--lz-accent-strong);
    box-shadow: none;
}

body.public-ecosystem-page .lz-footer-cta:hover,
body.public-ecosystem-page .lz-footer-hero .lz-footer-cta.app-action-btn-primary:hover {
    border-color: rgba(179, 247, 232, 0.5);
    background: rgba(var(--lz-accent-rgb), 0.15);
    color: #c7fff4;
}

body.public-ecosystem-page .lz-footer-secondary,
body.public-ecosystem-page .lz-footer-hero .lz-footer-secondary.app-action-btn-primary {
    border-color: rgba(var(--lz-accent-rgb), 0.5);
    background: var(--lz-accent);
    color: #050507;
    font-weight: 700;
    box-shadow: none;
}

body.public-ecosystem-page .lz-footer-secondary:hover,
body.public-ecosystem-page .lz-footer-hero .lz-footer-secondary.app-action-btn-primary:hover {
    border-color: rgba(179, 247, 232, 0.58);
    background: var(--lz-accent-strong);
    color: #050507;
}

body.public-ecosystem-page .lz-footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 2fr);
    align-items: start;
    gap: clamp(42px, 5vw, 78px);
    padding: 24px 0 62px;
    background: transparent;
}

body.public-ecosystem-page .lz-footer-brand,
body.public-ecosystem-page .lz-footer-nav {
    position: relative;
    z-index: 1;
}

body.public-ecosystem-page .lz-footer-brand {
    display: grid;
    align-content: start;
    max-width: 380px;
}

body.public-ecosystem-page .lz-footer .lz-footer-brand-top {
    display: inline-flex;
    align-items: center;
    justify-items: initial;
    gap: 11px;
}

body.public-ecosystem-page .lz-footer-logo-lockup {
    width: 70px;
    height: auto;
    max-height: 20px;
    object-fit: contain;
}

body.public-ecosystem-page .lz-footer-brand-copy {
    display: grid;
    gap: 0;
}

body.public-ecosystem-page .lz-footer-brand-copy span {
    color: var(--lz-dim);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

body.public-ecosystem-page .lz-footer-brand-links {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

body.public-ecosystem-page .lz-footer-brand-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: max-content;
    color: rgba(245, 245, 245, 0.76);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

body.public-ecosystem-page .lz-footer-brand-links a:hover,
body.public-ecosystem-page .lz-footer-links a:hover {
    color: var(--lz-text);
}

body.public-ecosystem-page .lz-footer-brand-links i,
body.public-ecosystem-page .lz-footer-brand-links svg {
    width: 13px;
    min-width: 13px;
    height: 13px;
    flex: 0 0 13px;
    stroke-width: 2;
}

body.public-ecosystem-page .lz-footer-brand-links a > i:first-child,
body.public-ecosystem-page .lz-footer-brand-links a > svg:first-child {
    color: var(--lz-accent-strong);
    stroke-width: 1.9;
}

body.public-ecosystem-page .lz-footer-brand-links a > i:last-child,
body.public-ecosystem-page .lz-footer-brand-links a > svg:last-child {
    width: 12px;
    min-width: 12px;
    height: 12px;
    flex-basis: 12px;
    color: rgba(245, 245, 245, 0.48);
}

body.public-ecosystem-page .lz-footer-copy {
    max-width: 360px;
    margin: 30px 0 0;
    color: rgba(212, 212, 216, 0.44);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

body.public-ecosystem-page .lz-footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 34px clamp(32px, 4vw, 54px);
    padding-top: 2px;
}

body.public-ecosystem-page .lz-footer-group {
    min-width: 0;
}

body.public-ecosystem-page .lz-footer-heading {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(245, 245, 245, 0.42);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

body.public-ecosystem-page .lz-footer-links {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.public-ecosystem-page .lz-footer-links a {
    color: rgba(212, 212, 216, 0.7);
    font-size: 14px;
    font-weight: 520;
    line-height: 1.35;
    text-decoration: none;
}

@media (min-width: 1181px) and (max-width: 1380px) {
    body.public-ecosystem-page .lz-nav {
        --lz-nav-shell-width: min(var(--lz-width-page), calc(100vw - 56px));
    }

    body.public-ecosystem-page .lz-nav-shell {
        grid-template-columns: minmax(210px, 240px) minmax(0, 1fr) minmax(220px, 235px);
    }

    body.public-ecosystem-page .lz-nav-links-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 235px);
    }

    body.public-ecosystem-page .lz-nav-links {
        gap: 3px;
    }

    body.public-ecosystem-page .lz-nav-links a,
    body.public-ecosystem-page .lz-nav-item--mega > .lz-nav-link {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 14px;
    }

    body.public-ecosystem-page .lz-nav-actions {
        gap: 7px;
        padding-left: 12px;
    }

    body.public-ecosystem-page .lz-nav-login {
        padding-right: 10px;
        padding-left: 10px;
    }

    body.public-ecosystem-page .lz-nav-cta {
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media (max-width: 1180px) {
    body.public-ecosystem-page .lz-nav {
        --lz-mobile-drawer-width: min(430px, calc(100vw - 24px));
        --lz-mobile-drawer-gutter: 18px;
        --lz-mobile-logo-width: 78px;
        --lz-mobile-close-size: 40px;
        --lz-mobile-close-offset: 20px;
        --lz-mobile-drawer-head-center: calc(max(12px, env(safe-area-inset-top)) + 33px);
        top: 10px;
        padding: 5px 0;
        pointer-events: none;
    }

    body.public-ecosystem-page.is-mobile-nav-open .lz-nav {
        top: 0 !important;
        z-index: 1300 !important;
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    body.public-ecosystem-page .lz-nav::before,
    body.public-ecosystem-page.is-mobile-nav-open .lz-nav::before,
    body.public-ecosystem-page .lz-nav:has(.lz-nav-item--mega:hover)::before,
    body.public-ecosystem-page .lz-nav:has(.lz-nav-item--mega:focus-within)::before {
        content: none !important;
        display: none !important;
    }

    body.public-ecosystem-page .lz-nav .lz-container {
        width: min(100%, calc(100vw - 48px));
    }

    body.public-ecosystem-page .lz-nav-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto !important;
        min-height: 58px;
        padding: 0 10px 0 18px;
        overflow: visible;
        border: 1px solid rgba(255, 255, 255, 0.095);
        border-radius: 14px;
        background: rgba(0, 0, 0, 0.96);
        pointer-events: auto;
    }

    body.public-ecosystem-page .lz-nav-brand {
        min-width: 0;
    }

    body.public-ecosystem-page .lz-nav-logo-lockup {
        width: 74px;
        height: auto;
    }

    body.public-ecosystem-page .lz-nav-brand-name {
        color: rgba(245, 245, 245, 0.62);
        font-size: 13px;
        font-weight: 620;
    }

    body.public-ecosystem-page .lz-nav-toggle,
    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-toggle {
        position: relative !important;
        inset: auto !important;
        display: inline-grid !important;
        place-items: center;
        justify-self: end !important;
        align-self: center !important;
        width: 46px !important;
        min-width: 46px !important;
        height: 46px !important;
        flex-basis: 46px !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: rgba(245, 245, 245, 0.9) !important;
    }

    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-toggle {
        position: fixed !important;
        top: calc(var(--lz-mobile-drawer-head-center) - var(--lz-mobile-close-offset) - 3px) !important;
        right: calc(max(0px, env(safe-area-inset-right)) + 14px) !important;
        z-index: 1204 !important;
        width: var(--lz-mobile-close-size) !important;
        min-width: var(--lz-mobile-close-size) !important;
        height: var(--lz-mobile-close-size) !important;
        flex-basis: var(--lz-mobile-close-size) !important;
    }

    body.public-ecosystem-page .lz-nav-toggle::before,
    body.public-ecosystem-page .lz-nav-toggle::after {
        content: '';
        position: absolute;
        display: block !important;
        width: 24px;
        height: 2px;
        border-radius: 0;
        background: currentColor;
        opacity: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        transition: opacity 0.16s ease, transform 0.16s ease;
    }

    body.public-ecosystem-page .lz-nav-toggle svg,
    body.public-ecosystem-page .lz-nav-toggle i {
        display: block !important;
        width: 30px !important;
        height: 30px !important;
        color: currentColor !important;
        stroke-width: 1.9 !important;
        transition: opacity 0.16s ease, transform 0.16s ease;
    }

    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-toggle svg,
    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-toggle i {
        opacity: 0 !important;
        transform: scale(0.84) !important;
    }

    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-toggle::before {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-toggle::after {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-brand {
        position: fixed !important;
        top: calc(var(--lz-mobile-drawer-head-center) - 11px) !important;
        right: calc(var(--lz-mobile-drawer-width) - var(--lz-mobile-drawer-gutter) - var(--lz-mobile-logo-width)) !important;
        z-index: 1205 !important;
        display: flex !important;
        align-items: center !important;
        width: var(--lz-mobile-logo-width) !important;
        min-width: var(--lz-mobile-logo-width) !important;
        min-height: 22px !important;
        padding: 0 !important;
        opacity: 1 !important;
    }

    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-logo-lockup {
        width: var(--lz-mobile-logo-width) !important;
        max-height: 22px !important;
    }

    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-brand-name {
        display: none !important;
    }

    body.public-ecosystem-page .lz-nav-links-wrap {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        z-index: 1201 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        align-content: start !important;
        gap: 14px !important;
        box-sizing: border-box !important;
        width: var(--lz-mobile-drawer-width) !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        padding: calc(max(12px, env(safe-area-inset-top)) + 72px) 18px calc(max(16px, env(safe-area-inset-bottom)) + 18px) !important;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        border: 0 !important;
        border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 0 !important;
        background: #050505 !important;
        box-shadow: none !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(104%, 0, 0);
        transform-origin: center right;
        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
    }

    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-links-wrap {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    body.public-ecosystem-page .lz-nav-links,
    body.public-ecosystem-page .lz-nav-actions {
        position: static !important;
        display: grid !important;
        width: calc(100% + 36px) !important;
        max-width: none !important;
        justify-self: stretch !important;
        gap: 0 !important;
        margin-right: -18px !important;
        margin-left: -18px !important;
        padding: 0 !important;
        border: 0 !important;
        transform: none !important;
        -webkit-tap-highlight-color: transparent;
    }

    body.public-ecosystem-page .lz-nav-links {
        grid-template-columns: 1fr !important;
        justify-items: stretch !important;
    }

    body.public-ecosystem-page .lz-nav-item {
        display: grid !important;
        width: 100% !important;
        min-width: 0;
    }

    body.public-ecosystem-page .lz-nav-item--mega {
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    body.public-ecosystem-page .lz-nav-item--mega::after {
        display: none !important;
    }

    body.public-ecosystem-page .lz-nav-links > a,
    body.public-ecosystem-page .lz-nav-item--mega > .lz-nav-link,
    body.public-ecosystem-page .lz-nav-login {
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: none !important;
        min-height: 48px !important;
        padding: 0 18px !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.075) !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: rgba(245, 245, 245, 0.86) !important;
        font-size: 15px !important;
        font-weight: 720 !important;
        line-height: 1 !important;
        box-shadow: none !important;
    }

    body.public-ecosystem-page .lz-nav-item--mega > .lz-nav-link svg,
    body.public-ecosystem-page .lz-nav-item--mega > .lz-nav-link i {
        display: block !important;
        width: 14px !important;
        height: 14px !important;
        flex: 0 0 14px !important;
        margin-left: auto !important;
        color: rgba(245, 245, 245, 0.68) !important;
        opacity: 0.82 !important;
        stroke-width: 2.1 !important;
        transform: none !important;
    }

    body.public-ecosystem-page .lz-nav-item--mega.is-mobile-open > .lz-nav-link svg,
    body.public-ecosystem-page .lz-nav-item--mega.is-mobile-open > .lz-nav-link i {
        opacity: 0.9 !important;
        transform: rotate(180deg) !important;
    }

    body.public-ecosystem-page .lz-nav-mega {
        position: static !important;
        inset: auto !important;
        z-index: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: none !important;
        min-height: 0 !important;
        gap: 12px !important;
        padding: 0 18px 16px !important;
        overflow: visible !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: none !important;
    }

    body.public-ecosystem-page .lz-nav-item--mega:not(.is-mobile-open) .lz-nav-mega {
        display: none !important;
    }

    body.public-ecosystem-page .lz-nav-mega-copy {
        display: block !important;
        min-height: 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }

    body.public-ecosystem-page .lz-nav-mega-copy > span,
    body.public-ecosystem-page .lz-nav-mega-copy > strong,
    body.public-ecosystem-page .lz-nav-mega-copy > p,
    body.public-ecosystem-page .lz-nav-links .lz-nav-mega-copy-cta {
        display: none !important;
    }

    body.public-ecosystem-page .lz-nav-platform-layout,
    body.public-ecosystem-page .lz-nav-prop-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        min-width: 0 !important;
    }

    body.public-ecosystem-page .lz-nav-resource-columns,
    body.public-ecosystem-page .lz-nav-resource-columns--platform,
    body.public-ecosystem-page .lz-nav-resource-columns--data,
    body.public-ecosystem-page .lz-nav-resource-columns--prop,
    body.public-ecosystem-page .lz-nav-resource-columns--company {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    body.public-ecosystem-page .lz-nav-resource-column,
    body.public-ecosystem-page .lz-nav-resource-columns--prop .lz-nav-resource-column {
        display: grid !important;
        gap: 7px !important;
        min-width: 0 !important;
        padding: 13px 0 2px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.065) !important;
        border-right: 0 !important;
        opacity: 1 !important;
        transform: none !important;
    }

    body.public-ecosystem-page .lz-nav-resource-column:first-child,
    body.public-ecosystem-page .lz-nav-resource-columns--prop .lz-nav-resource-column:first-child {
        padding-top: 12px !important;
        border-top: 0 !important;
    }

    body.public-ecosystem-page .lz-nav-resource-column span {
        margin: 0 0 2px !important;
        color: rgba(212, 212, 216, 0.42) !important;
        font-size: 10px !important;
        font-weight: 760 !important;
        letter-spacing: 0.12em !important;
        line-height: 1 !important;
    }

    body.public-ecosystem-page .lz-nav-resource-column a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        width: 100% !important;
        min-height: 32px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: rgba(245, 245, 245, 0.72) !important;
        font-size: 14px !important;
        font-weight: 660 !important;
        line-height: 1.18 !important;
    }

    body.public-ecosystem-page .lz-nav-links .lz-nav-dashboard-card {
        order: -1;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 7px;
        width: 100% !important;
        min-height: 42px !important;
        margin: 10px 0 2px !important;
        padding: 0 !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.065) !important;
        border-radius: 0 !important;
        background: transparent !important;
        opacity: 1 !important;
        transform: none !important;
    }

    body.public-ecosystem-page .lz-nav-dashboard-frame,
    body.public-ecosystem-page .lz-nav-prop-covers,
    body.public-ecosystem-page .lz-nav-cover-media {
        display: none !important;
    }

    body.public-ecosystem-page .lz-nav-dashboard-card-copy strong {
        display: inline-flex !important;
        align-items: center !important;
        gap: 7px !important;
        font-size: 14px;
    }

    body.public-ecosystem-page .lz-nav-actions {
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
        align-self: start !important;
        padding-top: 0 !important;
        background: transparent !important;
    }

    body.public-ecosystem-page .lz-nav-login {
        justify-content: flex-start !important;
    }

    body.public-ecosystem-page .lz-nav-cta {
        display: flex !important;
        justify-content: center !important;
        width: calc(100% - 36px) !important;
        max-width: none !important;
        min-height: 52px !important;
        margin: 12px 18px 0 !important;
        border-radius: 0 !important;
        color: #04110f !important;
        font-size: 15px !important;
        font-weight: 720 !important;
        box-shadow: none !important;
    }

    body.public-ecosystem-page .lz-footer-hero-content,
    body.public-ecosystem-page .lz-footer-main {
        grid-template-columns: 1fr;
    }

    body.public-ecosystem-page .lz-footer-main {
        width: min(720px, calc(100% - 26px));
        margin-right: auto;
        margin-left: auto;
    }

    body.public-ecosystem-page .lz-footer-hero-side {
        justify-items: start;
    }

    body.public-ecosystem-page .lz-footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 34px;
    }
}

@media (max-width: 860px) {
    body.public-ecosystem-page .lz-nav {
        --lz-mobile-drawer-width: min(410px, calc(100vw - 18px));
    }
}

@media (max-width: 680px) {
    body.public-ecosystem-page .lz-footer > .lz-container {
        width: 100%;
    }

    body.public-ecosystem-page .lz-footer-hero {
        min-height: 0;
        padding: 42px 20px 34px;
    }

    body.public-ecosystem-page .lz-footer-title {
        font-size: clamp(34px, 12vw, 48px);
    }

    body.public-ecosystem-page .lz-footer-hero-actions {
        grid-template-columns: 1fr;
        width: 100%;
    }

    body.public-ecosystem-page .lz-footer-main {
        width: min(100%, calc(100% - 40px));
        gap: 38px;
        padding: 46px 0 56px;
    }

    body.public-ecosystem-page .lz-footer-brand {
        max-width: none;
    }

    body.public-ecosystem-page .lz-footer .lz-footer-brand-top {
        gap: 12px;
    }

    body.public-ecosystem-page .lz-footer-logo-lockup {
        width: 68px;
    }

    body.public-ecosystem-page .lz-footer-brand-links {
        gap: 13px;
        margin-top: 24px;
    }

    body.public-ecosystem-page .lz-footer-copy {
        max-width: 30ch;
        margin-top: 24px;
    }

    body.public-ecosystem-page .lz-footer-nav {
        grid-template-columns: 1fr;
        gap: 31px;
        padding-top: 2px;
    }

    body.public-ecosystem-page .lz-footer-group {
        display: grid;
        gap: 15px;
    }

    body.public-ecosystem-page .lz-footer-links {
        gap: 12px;
        margin-top: 0;
    }

    body.public-ecosystem-page .lz-footer-links a {
        display: inline-flex;
        width: fit-content;
        max-width: 100%;
        min-height: 22px;
    }
}

@media (max-width: 640px) {
    body.public-ecosystem-page .lz-nav {
        --lz-mobile-drawer-width: min(360px, calc(100vw - 14px));
        --lz-mobile-drawer-gutter: 16px;
        --lz-mobile-logo-width: 74px;
    }

    body.public-ecosystem-page .lz-nav .lz-container {
        width: min(100%, calc(100vw - 24px));
    }

    body.public-ecosystem-page .lz-nav-shell {
        min-height: 58px;
        padding-right: 8px;
        padding-left: 18px;
    }

    body.public-ecosystem-page .lz-nav-logo-lockup {
        width: 68px;
    }

    body.public-ecosystem-page .lz-nav-shell.is-open .lz-nav-logo-lockup {
        width: var(--lz-mobile-logo-width) !important;
    }

    body.public-ecosystem-page .lz-nav-brand-name {
        display: none;
    }

    body.public-ecosystem-page .lz-nav-links-wrap {
        padding: calc(max(10px, env(safe-area-inset-top)) + 68px) 16px calc(max(14px, env(safe-area-inset-bottom)) + 16px) !important;
    }

    body.public-ecosystem-page .lz-nav-links,
    body.public-ecosystem-page .lz-nav-actions {
        width: calc(100% + 32px) !important;
        margin-right: -16px !important;
        margin-left: -16px !important;
    }

    body.public-ecosystem-page .lz-nav-links > a,
    body.public-ecosystem-page .lz-nav-item--mega > .lz-nav-link,
    body.public-ecosystem-page .lz-nav-login {
        min-height: 46px !important;
        padding-right: 16px !important;
        padding-left: 16px !important;
        font-size: 14.5px !important;
    }

    body.public-ecosystem-page .lz-nav-cta {
        width: calc(100% - 32px) !important;
        margin-right: 16px !important;
        margin-left: 16px !important;
    }

    body.public-ecosystem-page .lz-nav-mega {
        padding-right: 16px !important;
        padding-bottom: 12px !important;
        padding-left: 16px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.public-ecosystem-page *,
    body.public-ecosystem-page *::before,
    body.public-ecosystem-page *::after {
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
