@font-face {
    font-family: 'Abhaya Libre';
    src: url('../assets/fonts/AbhayaLibre-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../assets/fonts/NotoSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans JP';
    src: url('../assets/fonts/NotoSansJP-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans Arabic';
    src: url('../assets/fonts/NotoSansArabic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #010315;
    --h: #e6eef4;
    --p: #e4e8ef;
    --acc: #A7C4E5;
    --sep: rgba(230, 238, 244, 0.15);
    --sep2: #626d89;
    --g: rgba(197, 222, 255, 0.06);
    --gb: rgba(187, 210, 228, 0.12);
    --px-m: 20px;
    --px-t: 36px;
    --px-d: clamp(48px, 7vw, 96px);
    --col-v: clamp(32px, 4vw, 56px);
    --pt-m: calc(58px + 20px);
    --pt-t: calc(58px + 32px);
    --pt-d: calc(58px + clamp(40px, 7vh, 72px));
    --pb-m: 40px;
    --pb-t: 48px;
    --pb-d: clamp(48px, 7vh, 72px);
    --dur: .9s;
    --ease: cubic-bezier(0.76, 0, 0.24, 1);
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg);
    color: var(--p);
    -webkit-font-smoothing: antialiased;
    touch-action: none;
    cursor: none;
    background-image: linear-gradient(rgba(230, 238, 244, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(230, 238, 244, 0.012) 1px, transparent 1px);
    background-size: 80px 80px;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(230, 238, 244, 0.1);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(230, 238, 244, 0.2);
}

#cd {
    position: fixed;
    width: 14px;
    height: 14px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%)
}

#cd::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--p)
}

#cd::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    background: var(--p)
}

#cr {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .4s var(--ease), height .4s var(--ease), opacity .3s
}

#cr::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(187, 190, 228, 0.3)
}

#cr::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(187, 187, 228, 0.3)
}

#cr.x {
    width: 52px;
    height: 52px
}

#ld {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ld.out {
    animation: lout 1.2s var(--ease) forwards;
    pointer-events: none;
}

@keyframes lout {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

#ld-logo-img {
    width: clamp(140px, 20vw, 240px);
    height: auto;
    opacity: 0;
    animation: l-fade 3s var(--ease) forwards;
}

@keyframes l-fade {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


#ld {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

#ld.out {
    transform: translateY(100%);
    pointer-events: none;
}


.ld-grid {
    position: absolute;
    inset: -100px;
    background-image:
        linear-gradient(rgba(230, 238, 244, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 238, 244, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-pan 120s linear infinite;
    z-index: 1;
}

@keyframes grid-pan {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(60px, 60px);
    }
}

.ld-side-tag {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: 0.25em;
    color: var(--acc);
    opacity: 0.3;
    pointer-events: none;
}

.ld-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

#ld-logo-big {
    width: clamp(280px, 35vw, 600px);
    height: auto;
    opacity: 0.8;
}

.ld-bar-wrap {
    width: 200px;
    height: 1px;
    background: rgba(230, 238, 244, 0.08);
    position: relative;
}

#ld-prog-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--acc);
    width: 0;
    transition: width 0.4s ease;
}

.ld-info {
    display: flex;
    gap: 12px;
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--acc);
    text-transform: uppercase;
    opacity: 0.6;
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 9000;
    display: flex;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid var(--sep);
    background: rgba(1, 3, 21, 0.8);
    backdrop-filter: blur(20px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.nv-logo img {
    height: 22px;
    width: auto;
    display: block;
}

.nav-clock {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--h);
    opacity: 0.6;
    white-space: nowrap;
}

@media(max-width:767px) {
    #nav {
        padding: 0 15px;
        height: 50px;
    }

    .nav-clock {
        font-size: 7px;
        gap: 8px;
    }

    .nav-sep {
        margin: 0 10px;
        height: 14px;
    }

    .nv-logo img {
        height: 18px;
    }
}

.nav-sep {
    width: 1px;
    height: 20px;
    background: var(--sep);
    margin: 0 30px;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

.lang-box {
    position: relative;
    cursor: none;
}

.lang-cur {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: var(--acc);
}

.lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg);
    border: 1px solid var(--sep);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 10px 0;
}

.lang-box:hover .lang-list {
    opacity: 1;
    visibility: visible;
}

.lang-opt {
    display: block;
    padding: 6px 20px;
    font-size: 10px;
    color: var(--p);
    text-decoration: none;
}

.lang-opt:hover,
.lang-opt.on {
    color: var(--acc);
}

#prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--p);
    z-index: 700;
    transition: width var(--dur) var(--ease);
    opacity: .5
}

#cur {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease
}

#cur.show {
    opacity: 1;
    pointer-events: all
}

.nlogo {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: .5em;
    color: var(--p);
    text-decoration: none;
    opacity: .8;
    transition: opacity .3s;
    cursor: none;
    text-transform: uppercase
}

.nlogo:hover {
    opacity: 1
}

.nlogo img {
    height: 22px;
    width: auto;
    display: block
}

.nr {
    display: flex;
    align-items: center;
    gap: 20px
}

.lang-wrap {
    position: relative;
    display: inline-block;
    z-index: 20
}

.lang-cur {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: .45em;
    color: rgba(187, 191, 228, 0.4);
    background: none;
    border: none;
    cursor: none;
    transition: color .3s;
    padding: 10px 0
}

.lang-cur:hover,
.lang-wrap:hover .lang-cur {
    color: var(--p)
}

.lang-list {
    position: absolute;
    top: 100%;
    right: -10px;
    background: rgba(1, 3, 21, 0.95);
    border: 1px solid var(--sep);
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    backdrop-filter: blur(20px)
}

.lang-wrap:hover .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.lang-opt {
    display: block;
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: .45em;
    color: rgba(187, 191, 228, 0.4);
    text-decoration: none;
    padding: 6px 20px 6px 14px;
    text-align: right;
    transition: color .3s;
    cursor: none
}

.lang-opt:hover,
.lang-opt.active {
    color: var(--p)
}

#pnav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--px-m);
    border-top: 1px solid var(--sep);
    background: rgba(0, 2, 18, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px)
}

.pnc {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 7px;
    letter-spacing: .45em;
    color: rgba(187, 203, 228, 0.3);
    text-transform: uppercase
}

.dots {
    display: flex;
    gap: 6px;
    align-items: center
}

.dot {
    width: 3px;
    height: 3px;
    background: rgba(187, 202, 228, 0.2);
    border: none;
    cursor: none;
    transition: all .35s ease;
    padding: 0
}

.dot.a {
    background: var(--p);
    width: 16px
}

.footer-link {
    text-decoration: none;
    transition: color .3s;
    cursor: none
}

.footer-link:hover {
    color: var(--p)
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px
}

.footer-left #acc-toggle {
    color: rgba(187, 198, 228, 0.4);
    cursor: none;
    transition: color .3s
}

.footer-left #acc-toggle:hover {
    color: var(--p)
}

.footer-left #acc-toggle img {
    width: 18px;
    height: 18px;
    display: block
}

.footer-sig {
    height: 24px;
    width: auto;
    opacity: .8;
    transition: opacity .3s
}

.footer-sig:hover {
    opacity: 1
}

.signature-wrap {
    display: flex;
    align-items: center;
    gap: 8px
}

.signature-wrap a {
    color: var(--acc);
}


#stage {
    position: fixed;
    top: 58px;
    bottom: 40px;
    left: 0;
    right: 0;
    overflow: hidden
}

#track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    will-change: transform;
    transition: transform var(--dur) var(--ease)
}

.slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    overflow: hidden
}

.vcol {
    width: var(--col-v);
    flex-shrink: 0;
    border-right: 1px solid var(--sep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 3vh, 28px) 0;
    overflow: hidden;
}


.vnum {
    font-family: 'Abhaya Libre', serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    color: rgba(187, 210, 228, 0.06);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: .05em;
    line-height: 1;
}

.vtitle {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 7px;
    letter-spacing: .5em;
    color: rgba(187, 210, 228, 0.3);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
}

.page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--pt-m) var(--px-m) var(--pb-m);
    overflow: hidden;
    position: relative
}

.page--rich {
    justify-content: flex-start;
    padding-top: calc(58px + 10px);
    overflow-y: auto;
    scrollbar-width: none
}

.page--rich::-webkit-scrollbar {
    display: none
}

.rv {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.23, 1, .32, 1)
}

.rv.d2 {
    transition-delay: .08s
}

.rv.d3 {
    transition-delay: .16s
}

.rv.d4 {
    transition-delay: .24s
}

.rv.d5 {
    transition-delay: .32s
}

.rv.d6 {
    transition-delay: .4s
}

.rv.d7 {
    transition-delay: .48s
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.ey {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: .55em;
    text-indent: .55em;
    color: rgba(187, 210, 228, 0.35);
    display: block;
    margin-bottom: 14px;
    text-transform: uppercase
}

.imp {
    font-family: 'Abhaya Libre', serif;
    font-weight: 800;
    font-size: clamp(18px, 3.5vw, 30px);
    color: var(--h);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
    max-width: 30em
}

.bod {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--p);
    line-height: 1.8;
    letter-spacing: .02em;
    opacity: .75;
    max-width: 45em
}

.sl {
    height: 1px;
    background: var(--sep);
    display: block;
    margin: clamp(10px, 2vh, 24px) 0
}

.tbl {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px
}

.tbl tr {
    border-top: 1px solid var(--sep2)
}

.tbl tr:last-child {
    border-bottom: 1px solid var(--sep2)
}

.tbl td {
    padding: 10px 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: var(--p);
    line-height: 1.6;
    vertical-align: top;
    opacity: .75
}

.tbl td:first-child {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: .3em;
    color: rgba(187, 210, 228, 0.4);
    white-space: nowrap;
    padding-right: 24px;
    opacity: 1
}

.tbl-c {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px
}

.tbl-c th {
    padding: 8px 0;
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: .4em;
    color: rgba(187, 210, 228, 0.3);
    text-transform: uppercase;
    text-align: left;
    border-bottom: 1px solid var(--sep)
}

.tbl-c th:nth-child(3) {
    color: rgba(187, 210, 228, 0.6)
}

.tbl-c tr {
    border-top: 1px solid var(--sep2)
}

.tbl-c tr:last-child {
    border-bottom: 1px solid var(--sep2)
}

.tbl-c td {
    padding: 10px 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: rgba(187, 210, 228, 0.4);
    line-height: 1.6;
    padding-right: 20px
}

.tbl-c td:first-child {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: .3em;
    color: rgba(187, 210, 228, 0.3)
}

.tbl-c td:nth-child(3) {
    color: var(--p);
    opacity: .85
}

.two {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%
}

.spv {
    width: 1px;
    background: var(--sep);
    display: none;
    flex-shrink: 0;
    margin: 0 clamp(20px, 3vw, 40px)
}

.cpair {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 14px
}

.card {
    padding: 16px 18px;
    border-left: 2px solid var(--sep);
    background: rgba(187, 210, 228, 0.04)
}

.clbl {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: .45em;
    color: rgba(187, 210, 228, 0.35);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase
}

.cbod {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: var(--p);
    line-height: 1.8;
    opacity: .75
}

.note {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: .04em;
    color: rgba(187, 210, 228, 0.3);
    margin-top: 14px;
    line-height: 1.7;
    text-transform: uppercase
}

.clink {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(11px, 1.4vw, 13px);
    letter-spacing: .12em;
    color: rgba(187, 210, 228, 0.45);
    text-decoration: none;
    transition: color .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: none;
    text-transform: uppercase;
}

.clink:hover {
    color: var(--p)
}

.copy-icon {
    width: clamp(10px, 1.1vw, 12px);
    height: auto;
    opacity: 0.25;
    transition: all 0.3s var(--ease);
    pointer-events: none;
    display: block;
}

.clink:hover .copy-icon {
    opacity: 0.8;
}


.st-tit {
    color: rgba(187, 210, 228, 0.25);
    margin-right: 4px;
    font-size: 0.9em;
}



.glass-card {
    background: rgba(187, 210, 228, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(187, 210, 228, 0.08);
    padding: clamp(16px, 2.5vw, 24px);
    border-radius: 2px;
}


.tbls-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
    width: 100%
}

.tbl-block {
    flex: 1;
    min-width: 0
}

.tbl-label {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 7px;
    letter-spacing: .45em;
    color: rgba(187, 210, 228, 0.25);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase
}

.tbl-d {
    width: 100%;
    border-collapse: collapse
}

.tbl-d thead tr {
    border-bottom: 1px solid var(--sep)
}

.tbl-d th {
    padding: 7px 0;
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 7.5px;
    letter-spacing: .35em;
    color: rgba(187, 210, 228, 0.35);
    text-transform: uppercase;
    text-align: left
}

.tbl-d th:last-child {
    color: rgba(187, 210, 228, 0.55)
}

.tbl-d tbody tr {
    border-bottom: 1px solid rgba(187, 210, 228, 0.06)
}

.tbl-d td {
    padding: 7px 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: rgba(187, 210, 228, 0.5);
    line-height: 1.5;
    padding-right: 16px
}

.tbl-d td:last-child {
    color: rgba(187, 210, 228, 0.25);
    padding-right: 0
}



.vnav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: clamp(6px, 1vh, 12px);
    pointer-events: none;
}

.vnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 20px;
    cursor: none;
    pointer-events: all;
    position: relative;
    transition: all 0.4s var(--ease);
}

.vnav-num {
    font-family: 'Abhaya Libre', serif;
    font-weight: 800;
    font-size: 9px;
    color: rgba(187, 210, 228, 0.12);
    transition: all 0.4s var(--ease);
}

.vnav-lab {
    position: absolute;
    left: 100%;
    margin-left: 20px;
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 7px;
    letter-spacing: 0.25em;
    color: var(--acc);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--ease);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    background: rgba(1, 3, 21, 0.85);
    backdrop-filter: blur(10px);
    padding: 2px 10px;
}

.vnav-item.active .vnav-num {
    color: var(--acc);
    font-size: 11px;
    margin-bottom: 2px;
}


.vnav-item.active::after {
    content: attr(data-label);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 7px;
    letter-spacing: 0.4em;
    color: var(--p);
    opacity: 0.6;
    margin-top: 8px;
    white-space: nowrap;
}

.vnav-item:hover .vnav-num {
    color: var(--p);
}

.vnav-item:hover .vnav-lab {
    opacity: 0.8;
    transform: translateX(0);
}











.contact-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px
}

.contact-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: clamp(24px, 5vh, 48px);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(10px, 1.2vw, 12px);
    text-transform: uppercase;
}


.clsep {
    color: rgba(187, 210, 228, 0.15);
    letter-spacing: 0.2em;
}


.ghost-n {
    position: absolute;
    right: clamp(16px, 3vw, 40px);
    bottom: clamp(16px, 3vh, 32px);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(80px, 15vw, 180px);
    color: rgba(187, 210, 228, 0.04);
    line-height: 1;
    letter-spacing: -.02em;
    pointer-events: none;
    user-select: none;
}

.pg-next,
.pg-prev {
    position: absolute;
    bottom: clamp(4px, 1vh, 12px);
    background: none;
    border: none;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: .15em;
    color: var(--p);
    text-transform: uppercase;
    cursor: none;
    padding: 10px 0;
    z-index: 20;
    opacity: 0.6;
    transition: opacity .3s;
}

.pg-next:hover,
.pg-prev:hover {
    opacity: 1
}

.pg-prev {
    left: var(--px-m);
    text-align: left
}

.pg-next {
    right: var(--px-m);
    text-align: right
}

.arr {
    display: inline-block;
    font-family: sans-serif;
    transition: transform .3s ease
}

.pg-next:hover .arr {
    transform: translateX(4px)
}

.pg-prev:hover .arr {
    transform: translateX(-4px)
}


#acc-toggle {
    background: none;
    border: none;
    padding: 0;
}

.acc-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: clamp(280px, 25vw, 340px);
    background: rgba(1, 3, 21, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--sep);
    padding: 80px var(--px-t) 40px;
    z-index: 599;
    transform: translateX(100%);
    transition: transform .6s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.acc-panel:not([hidden]) {
    transform: translateX(0);
}

.acc-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.acc-btn,
.acc-row.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid var(--sep);
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--p);
    cursor: none;
    width: 100%;
    text-align: left;
    transition: background .3s, opacity .3s;
}

.acc-row.header {
    color: rgba(187, 210, 228, 0.4);
    pointer-events: none;
}

.acc-btn:hover {
    opacity: 0.6;
}

.acc-btn .st {
    opacity: 0.5;
}

.acc-btn.active .st {
    opacity: 1;
    color: #fff;
}

.acc-btn .st {
    opacity: 0.5;
    border: 1px solid var(--sep);
    padding: 3px 9px;
    transition: all .3s;
}

.acc-btn.active .st {
    opacity: 1;
    color: var(--p);
    border-color: var(--p);
    background: rgba(187, 210, 228, 0.05);
}


#tip {
    position: fixed;
    top: 0;
    left: 0;
    padding: 3px 8px;
    background: var(--bg);
    border: 1px solid var(--acc);
    color: var(--acc);
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 5px;
    letter-spacing: 0.25em;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transform-origin: center center;
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

#tip.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


#shutter {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 5000;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease);
}

#shutter.on {
    transform: translateX(0);
}


.modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}

.modal.visible {
    opacity: 1;
    pointer-events: all;
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(1, 3, 21, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-box {
    position: relative;
    width: 90%;
    max-width: 480px;
    max-height: 85vh;
    background: var(--bg);
    border: 1px solid var(--sep);
    display: flex;
    flex-direction: column;
    z-index: 10;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.5s var(--ease);
}

.modal.visible .modal-box {
    transform: scale(1) translateY(0);
}

.modal-box.glass {
    background: rgba(1, 3, 21, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(230, 238, 244, 0.08);
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--sep);
}

.modal-x {
    background: none;
    border: none;
    color: var(--p);
    font-size: 24px;
    cursor: none;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.modal-x:hover {
    opacity: 1;
}

.modal-scroll-area {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}


.gov-content .ey {
    margin-top: 24px;
}

.gov-content .ey:first-child {
    margin-top: 0;
}

.gov-contact {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gov-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border: 1px solid rgba(230, 238, 244, 0.05);
}

.copy-btn {
    background: var(--acc);
    border: none;
    color: #fff;
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    cursor: none;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.copy-btn:hover {
    opacity: 0.8;
}

.acc-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acc-row-h {
    display: flex;
    justify-content: space-between;
    padding: 0 16px 8px;
}

.nfs-lbl {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: 0.3em;
    color: rgba(187, 210, 228, 0.3);
    text-transform: uppercase;
}

.nfs-row {
    background: rgba(187, 210, 228, 0.03);
    border: 1px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: none;
}

.nfs-row:hover {
    background: rgba(187, 210, 228, 0.08);
    border-color: var(--sep);
}

.nfs-row.active {
    border-color: var(--acc);
    background: rgba(0, 72, 255, 0.05);
}

.nfs-val {
    color: var(--h);
    opacity: 0.6;
}

.nfs-row.active .nfs-val {
    color: var(--acc);
    opacity: 1;
}

.acc-foot {
    padding: 20px 30px;
    border-top: 1px solid var(--sep);
    text-align: center;
}

.acc-reset-btn {
    background: none;
    border: 1px solid var(--sep);
    color: var(--p);
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: 0.2em;
    padding: 10px 20px;
    cursor: none;
    opacity: 0.5;
    transition: all 0.3s;
    text-transform: uppercase;
}

.acc-reset-btn:hover {
    opacity: 1;
    border-color: var(--h);
    background: rgba(255, 255, 255, 0.05);
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
    animation-duration: 0ms !important;
    animation-delay: 0s !important;
    transition-duration: 0ms !important;
}

body.high-contrast {
    --bg: #000;
    --h: #fff;
    --p: #fff;
    --acc: #00ff00;
    --sep: rgba(255, 255, 255, 0.4);
}

body.text-zoom .imp {
    font-size: clamp(22px, 4vw, 36px);
}

body.text-zoom .bod {
    font-size: 15px;
}

body.system-font * {
    font-family: sans-serif !important;
}

body.system-cursor * {
    cursor: auto !important;
}

body.system-cursor #cd,
body.system-cursor #cr {
    display: none;
}

body.monochrome {
    filter: grayscale(1);
}

@media(min-width:768px) {

    nav,
    #pnav {
        padding: 0 var(--px-t)
    }

    .page {
        padding: var(--pt-t) var(--px-t) var(--pb-t)
    }

    .ey {
        font-size: 9px;
        margin-bottom: 18px
    }

    .imp {
        font-size: clamp(18px, 2.5vw, 28px)
    }

    .bod {
        font-size: 13px
    }

    .tbl td {
        font-size: 12px
    }

    .tbl-c td {
        font-size: 12px
    }

    .two {
        flex-direction: row;
        gap: 0
    }

    .two .col {
        flex: 1
    }

    .spv {
        display: block
    }

    .cpair {
        flex-direction: row
    }

    .cpair .card {
        flex: 1
    }

    .pg-prev {
        left: var(--px-t)
    }

    .pg-next {
        right: var(--px-t)
    }

    .tbls-row {
        flex-direction: row;
        gap: clamp(24px, 4vw, 48px)
    }

    .tbl-d td {
        font-size: 12px
    }
}

@media(min-width:1024px) {

    nav,
    #pnav {
        padding: 0 var(--px-d)
    }

    .page {
        padding: var(--pt-d) var(--px-d) var(--pb-d)
    }

    .imp {
        font-size: clamp(22px, 2vw, 32px)
    }

    .bod {
        font-size: 14px
    }

    .tbl td {
        font-size: 13px
    }

    .tbl-c td {
        font-size: 12px
    }

    .pg-prev {
        left: var(--px-d)
    }

    .pg-next {
        right: var(--px-d)
    }
}

@media (max-width: 768px) {
    .footer-sig {
        height: 16px;
        opacity: 0.8;
    }

    .contact-line {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    .contact-line .clsep {
        display: none;
    }
}