:root {
    --bg: #050505;
    --white: #F8F8F8;
    --silver: #C4C9CE;
    --graphite: #1C1C1C;
    --black: #000000;
    --matte: #A1A1A6;
    --blue: #3E9EFF;
    --gold: #F6C85F;
    /* xAr Warm Gold */
    --green: #00D084;
    /* DEVICE SAFE AREA PROXIES */
    --s-t: env(safe-area-inset-top);
    --s-b: env(safe-area-inset-bottom);
    --s-l: env(safe-area-inset-left);
    --s-r: env(safe-area-inset-right);
}

/* INSTANT SKIP OVERRIDES */
/* REMOVED TRAP: .xAr-instant-skip rules deleted */

.xAr-instant-skip #scroll-hint,
.xAr-instant-skip #loader {
    opacity: 0 !important;
    display: none !important;
}

/* SAFETY PATCH: Force interaction for returning users immediately */
html.xAr-instant-skip #xAr_Governance {
    opacity: 1 !important;
    pointer-events: auto !important;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    touch-action: none;
}

#xAr_Canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    touch-action: none;
}

/* OVERRIDE FOR TEXT PAGES (Privacy, Terms, etc.) */
body.static-page {
    overflow-y: auto !important;
    min-height: 100vh;
    height: auto !important;
    touch-action: auto !important;
    background: #F8F8F8 !important;
    /* Force allow scrolling */
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #444;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    z-index: 200;
    pointer-events: none;
    transition: opacity 0.8s ease-out;
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(3px);
    }

    100% {
        opacity: 0.2;
        transform: translateX(-50%) translateY(0);
    }
}

#scroll-hint {
    position: fixed;
    bottom: calc(40px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    color: var(--silver);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    z-index: 50;
    pointer-events: none;
    animation: pulse 2.5s infinite ease-in-out;
    opacity: 0;
    transition: opacity 0.5s;
    text-transform: uppercase;
}

.hud {
    position: fixed;
    color: rgba(196, 201, 206, 0.4);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    pointer-events: none;
    z-index: 60;
    text-transform: uppercase;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    margin: 32px;
    margin-top: calc(32px + env(safe-area-inset-top));
    margin-bottom: calc(32px + env(safe-area-inset-bottom));
    margin-left: calc(32px + env(safe-area-inset-left));
    margin-right: calc(32px + env(safe-area-inset-right));
}

@media (min-width: 1024px) {
    .hud {
        margin: 40px;
    }
}

.hud::before,
.hud::after {
    content: '';
    position: absolute;
    background: rgba(196, 201, 206, 0.4);
    transition: all 0.4s ease;
}

.hud-tl {
    top: 0;
    left: 0;
}

.hud-tr {
    top: 0;
    right: 0;
    text-align: right;
}

.hud-bl {
    bottom: 0;
    left: 0;
}

.hud-br {
    bottom: 0;
    right: 0;
    text-align: right;
}

.hud-tl::before {
    top: -10px;
    left: -10px;
    width: 1px;
    height: 15px;
}

.hud-tl::after {
    top: -10px;
    left: -10px;
    width: 15px;
    height: 1px;
}

.hud-tr::before {
    top: -10px;
    right: -10px;
    width: 1px;
    height: 15px;
}

.hud-tr::after {
    top: -10px;
    right: -10px;
    width: 15px;
    height: 1px;
}

.hud-bl::before {
    bottom: -10px;
    left: -10px;
    width: 1px;
    height: 15px;
}

.hud-bl::after {
    bottom: -10px;
    left: -10px;
    width: 15px;
    height: 1px;
}

.hud-br::before {
    bottom: -10px;
    right: -10px;
    width: 1px;
    height: 15px;
}

.hud-br::after {
    bottom: -10px;
    right: -10px;
    width: 15px;
    height: 1px;
}

.val {
    color: #fff;
    font-weight: 700;
}



#xAr_Governance {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: calc(32px + env(safe-area-inset-top)) calc(32px + env(safe-area-inset-left)) calc(32px + env(safe-area-inset-bottom)) calc(32px + env(safe-area-inset-right));
    box-sizing: border-box;
    color: var(--graphite);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

@media (min-width: 1024px) {
    #xAr_Governance {
        padding: 60px 80px;
    }
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    #xAr_Governance {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        background-color: rgba(248, 248, 248, 0.98);
        /* Almost opaque for White Code look */
    }
}

@supports not (backdrop-filter: none) {
    #xAr_Governance {
        background-color: #F8F8F8;
    }
}

#xAr_Governance.active {
    opacity: 1;
    pointer-events: auto;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 201;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    .brand-logo img {
        height: 80px;
    }
}

.overlay-meta-v {
    position: fixed;
    /* Fixed relative to viewport, won't scroll */
    top: calc(32px + env(safe-area-inset-top));
    left: calc(32px + env(safe-area-inset-left));
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin: 0;
    text-align: left;
    font-weight: 600;
    color: var(--silver);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 300;
    /* Ensure on top of content */
    opacity: 1;
}

.sys-overlay.active .overlay-meta-v {
    pointer-events: auto;
}

@media (max-width: 768px) {
    .overlay-meta-v {
        top: calc(24px + env(safe-area-inset-top));
        left: 24px;
        /* Match footer padding */
    }
}

@media (min-width: 1024px) {
    .overlay-meta-v {
        top: 72px;
        left: 80px;
    }
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    cursor: pointer;
    padding-left: 20px;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    will-change: transform, opacity;
    display: flex;
    align-items: center;
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    color: var(--graphite);
}

@media (min-width: 1024px) {

    .icon-btn:not(.text-btn),
    .icon-img {
        width: 32px;
        height: 32px;
    }
}

.text-btn {
    width: auto !important;
    height: 36px;
    padding: 0 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--graphite);
    border: none;
    border-radius: 18px;
    background-color: rgba(0, 0, 0, 0.04);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
    .text-btn {
        height: 32px;
        font-size: 11px;
    }
}

.text-btn:hover {
    background-color: rgba(62, 158, 255, 0.08);
    border: 1px solid var(--blue);
    color: var(--blue);
}

.btn-text {
    position: relative;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-btn.active .btn-text {
    opacity: 0;
    transform: scale(0.95);
}

.text-btn.active {
    background-color: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.icon-img {
    width: 32px;
    height: 32px;
    transition: width 0.3s, height 0.3s;
}

.icon-btn:hover {
    opacity: 1;
}

.close-global {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: #C4C9CE;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    margin-right: -10px;
}

.close-global:hover {
    transform: scale(1.1);
    color: var(--graphite);
}

.close-global:active {
    transform: scale(0.85);
    transition: transform 0.1s;
    color: var(--silver);
}

header.overlay-active .nav-icons {
    display: none;
}

header.overlay-active .close-global {
    display: flex;
    opacity: 0;
    animation: revealClose 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

@keyframes revealClose {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.icon-btn.active,
.icon-btn:active {
    color: #C4C9CE;
    opacity: 1;
}

.icon-img,
.close-x {
    position: absolute;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-x {
    opacity: 0;
    transform: scale(0.5);
    font-size: 18px;
    font-weight: 600;
    color: #C4C9CE;
    pointer-events: none;
}

.icon-btn.active .icon-img {
    opacity: 0;
    transform: scale(0.5);
}

.icon-btn.active .close-x {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.close-x {
    font-size: 24px;
}

.gov-main {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.headline {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--graphite);
    max-width: 1120px;
    width: 90%;
    text-align: center;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    user-select: none;
    pointer-events: auto;
}

.hero-word {
    display: block;
    position: relative;
    padding: 0;
}

.hero-word::before,
.hero-word::after {
    display: none;
}

header.overlay-active~.gov-main .headline {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

@media (min-width: 1024px) {
    .headline.desktop-single {
        white-space: nowrap;
        font-size: 56px;
        line-height: 1.05;
        letter-spacing: -0.05em;
    }

    .hero-word {
        display: inline-block;
        padding: 0 10px;
    }

    .hero-word::before,
    .hero-word::after {
        display: none;
    }
}

footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: var(--silver);
    letter-spacing: 0.08em;
    border-top: 1px solid rgba(196, 201, 206, 0.2);
    padding-top: 24px;
    position: relative;
    z-index: 10;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

@media (max-width: 768px) {
    footer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        text-align: center;
        padding-top: 25px;
        padding-bottom: calc(25px + env(safe-area-inset-bottom));
    }
}

.legal-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .legal-links {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    .overlay-content.manifesto-accordion {
        padding-bottom: calc(160px + env(safe-area-inset-bottom));
    }
}

header.overlay-active~footer {
    opacity: 0;
    border-top-color: transparent;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s, border-top-color 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.legal-links a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--graphite);
}

.sys-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #F5F5F7;
    /* Solid institutional light grey base */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
    overflow: hidden;
    /* Respect hardware frames */
    padding: env(safe-area-inset-top) env(safe-area-inset-right) 0 env(safe-area-inset-left);
    box-sizing: border-box;
}

.sys-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.overlay-content.manifesto-accordion {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    /* PERFECT VERTICAL CENTER */
    gap: 0;
    text-align: left;
    max-width: 800px;
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 40px;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .overlay-content.manifesto-accordion {
        justify-content: center;
        /* Center vertical alignment as requested */
        padding: 100px 24px 60px 24px;
        max-width: 100%;
    }
}

.manifesto-accordion.lang-ar {
    direction: rtl;
    text-align: right;
}

.manifesto-block {
    width: 100%;
    border-bottom: 1px solid rgba(196, 201, 206, 0.3);
}

.overlay-footer {
    flex-shrink: 0;
    width: 100%;
    padding: 24px 40px calc(24px + env(safe-area-inset-bottom)) 40px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8F8F8;
    border-top: 1px solid rgba(196, 201, 206, 0.2);
    /* EXACT GOVERNANCE REF */
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--silver);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-sizing: border-box;
    /* Prevent padding from adding to 100% width */
}

@media (max-width: 768px) {
    .overlay-footer {
        padding: 24px 32px calc(24px + env(safe-area-inset-bottom)) 24px;
        /* Extra right padding to prevent clipping of AR */
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.05em;
    color: var(--silver);
    text-transform: uppercase;
    line-height: 1.4;
}

.status-active {
    color: var(--green);
    font-weight: 500;
}

.status-pixel {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--green);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(0, 208, 132, 0.4);
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(0, 208, 132, 0.4);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 15px rgba(0, 208, 132, 0.7);
        opacity: 0.7;
    }
}

.sys-overlay.active .overlay-footer {
    opacity: 1;
    pointer-events: auto;
}

.lang-switcher {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    /* Matched to reference */
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--silver);

    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    white-space: nowrap;
    flex-shrink: 0;
    /* Force full width display */
    margin-right: -4px;
    /* Visual balance correction */
}

.lang-opt {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 4px;
    color: var(--silver);
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.lang-opt:hover {
    color: var(--graphite);
}

.lang-opt.active {
    color: var(--blue);
    /* Unified color scheme */
    font-weight: 600;
}

.lang-sep {
    color: rgba(196, 201, 206, 0.2);
    font-size: 10px;
    user-select: none;
}

@media (max-width: 768px) {
    .overlay-footer {
        padding: 20px 20px calc(20px + env(safe-area-inset-bottom)) 20px;
    }
}

.manifesto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-main {
    display: flex;
    align-items: baseline;
    gap: 15px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.manifesto-header:hover .header-main {
    transform: translateX(4px);
}

.manifesto-header:hover .block-title,
.manifesto-header:hover .block-num,
.manifesto-header:hover .acc-icon {
    color: var(--blue);
}

.manifesto-accordion.lang-ar .header-main {
    gap: 15px;
}

.manifesto-block {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sys-overlay.active .manifesto-block {
    opacity: 1;
    transform: translateY(0);
}

.sys-overlay.active .manifesto-block:nth-child(1) {
    transition-delay: 0.1s;
}

.sys-overlay.active .manifesto-block:nth-child(2) {
    transition-delay: 0.15s;
}

.sys-overlay.active .manifesto-block:nth-child(3) {
    transition-delay: 0.2s;
}

.sys-overlay.active .manifesto-block:nth-child(4) {
    transition-delay: 0.25s;
}

.sys-overlay.active .manifesto-block:nth-child(5) {
    transition-delay: 0.3s;
}

.overlay-meta-v,
.overlay-footer {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.sys-overlay.active .overlay-meta-v,
.sys-overlay.active .overlay-footer {
    opacity: 1;
}

.block-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--silver);
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 36px;
    display: inline-block;
}

.block-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    /* Slightly larger for desktop authority */
    font-weight: 800;
    /* Bolder */
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--graphite);
    margin: 0;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-icon {
    font-size: 14px;
    color: var(--silver);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.manifesto-block.active .block-title,
.manifesto-block.active .block-num,
.manifesto-block.active .acc-icon {
    color: var(--blue);
}

.manifesto-block.active .acc-icon {
    transform: rotate(45deg);
}

.manifesto-body {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0s;
}

.body-inner {
    padding-bottom: 40px;
    padding-left: 60px;
    /* Indented for hierarchical clarity */
}

@media (max-width: 768px) {
    .body-inner {
        padding-left: 0;
        /* Flat for mobile */
        padding-bottom: 32px;
    }
}

.manifesto-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    /* Reduced gap for button layout */
    flex-wrap: wrap;
}

.cta-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    cursor: pointer;

    /* PREMIUM BUTTON STYLE (System Index Match) */
    width: auto;
    min-height: 44px;
    /* Taller for 2 lines */
    padding: 8px 24px;
    border-radius: 22px;
    /* Pill shape adapted for height */
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    /* Prevent layout shift */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-item:hover {
    background-color: rgba(246, 200, 95, 0.08);
    /* Warm gold tint */
    border-color: var(--gold);
    transform: translateY(-2px);
}

.cta-item:hover .cta-main {
    color: var(--gold);
}

.cta-main {
    font-family: 'IBM Plex Mono', monospace;
    /* Switched to Mono for tech feel */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--graphite);
    text-transform: uppercase;
    transition: color 0.3s;
}

.cta-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.manifesto-block.active .manifesto-body {
    grid-template-rows: 1fr;
    opacity: 1;
    transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.body-inner {
    min-height: 0;
}

.block-text {
    font-family: 'Lora', serif;
    /* Authority switching to Serif for body readability */
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    /* Darker for better contrast */
    font-weight: 400;
    letter-spacing: 0;
    padding-bottom: 40px;
    margin: 0;
    -webkit-user-select: text;
    /* Safari/Chrome */
    -moz-user-select: text;
    /* Firefox */
    -ms-user-select: text;
    /* IE/Edge */
    user-select: text;
}

@media (max-width: 768px) {
    .headline {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .block-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .block-title {
        font-size: 18px;
    }

    .sys-overlay.active .manifesto-block {
        opacity: 1;
        transform: translateY(0);
    }

    .sys-overlay.active .manifesto-accordion>*:nth-child(1) {
        transition-delay: 0.15s;
    }

    .sys-overlay.active .manifesto-accordion>*:nth-child(2) {
        transition-delay: 0.20s;
    }

    .sys-overlay.active .manifesto-accordion>*:nth-child(3) {
        transition-delay: 0.25s;
    }

    .sys-overlay.active .manifesto-accordion>*:nth-child(4) {
        transition-delay: 0.30s;
    }

    .sys-overlay.active .manifesto-accordion>*:nth-child(5) {
        transition-delay: 0.35s;
    }
}