/* Bastat public UI — Sarj-inspired, mobile-first, RTL-ready */
:root {
    --bst-page: #fff;
    --bst-canvas: #fff;
    --bst-surface: #faf9f6;
    --bst-panel: #fbfaf8;
    --bst-ink: #292929;
    --bst-ink-soft: #666;
    --bst-ink-muted: #707070;
    --bst-line: #e3e2df;
    --bst-accent: #2b165e;
    --bst-hatch: #bcbcbc;
    --bst-hatch-opacity: .15;
    --bst-signal: #dd4040;
    --bst-bullet: #4959e4;
    --bst-header-h: 4rem;
    --bst-radius: .25rem;
    --bst-canvas-max: 1440px;
    --bst-hero-copy: 42.7rem;
    --bst-display-xl: clamp(2rem, 4.5vw, 4rem);
    --bst-display-md: clamp(1.75rem, 3vw, 2.75rem);
    --bst-display-sm: 2rem;
    --bst-lead: 1.125rem;
    --bst-body: 1rem;
    --bst-label: 1rem;
    --bst-eyebrow: .875rem;
    --bst-ease: cubic-bezier(.16, 1, .3, 1);
    --bst-font: "Noto Sans Arabic", "Segoe UI", Tahoma, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
}

body.bst-body {
    font-family: var(--bst-font);
    font-size: var(--bst-body);
    line-height: 1.5;
    color: var(--bst-ink);
    background: var(--bst-canvas);
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.bst-wrap {
    width: min(var(--bst-canvas-max), 100%);
    margin-inline: auto;
    padding-inline: 1.25rem;
}

@media (min-width: 768px) {
    .bst-wrap {
        padding-inline: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .bst-wrap {
        padding-inline: 5rem;
    }
}

.bst-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 50;
    height: var(--bst-header-h);
    color: #fff;
    transition: background-color .3s var(--bst-ease), color .3s var(--bst-ease), border-color .3s var(--bst-ease);
}

.bst-header.is-solid,
.bst-header.is-open {
    background: var(--bst-canvas);
    color: var(--bst-ink);
    border-bottom: 1px solid var(--bst-line);
}

.bst-header__bar {
    width: min(var(--bst-canvas-max), 100%);
    margin-inline: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-inline: 1.25rem;
}

@media (min-width: 768px) {
    .bst-header__bar {
        padding-inline: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .bst-header__bar {
        padding-inline: 5rem;
    }
}

.bst-logo {
    display: flex;
    align-items: center;
    height: 2.25rem;
    flex-shrink: 0;
}

.bst-logo__img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.bst-logo__img--dark {
    display: none;
}

.bst-header.is-solid .bst-logo__img--light,
.bst-header.is-open .bst-logo__img--light {
    display: none;
}

.bst-header.is-solid .bst-logo__img--dark,
.bst-header.is-open .bst-logo__img--dark {
    display: block;
}

.bst-nav {
    display: none;
    align-items: center;
    gap: .25rem;
}

.bst-nav__link {
    display: flex;
    align-items: center;
    height: 1.875rem;
    padding-inline: .875rem;
    font-size: .875rem;
    font-weight: 500;
    border-radius: var(--bst-radius);
    white-space: nowrap;
}

.bst-nav__link:hover {
    opacity: .7;
}

.bst-header__end {
    display: flex;
    align-items: center;
    gap: .25rem;
    flex-shrink: 0;
}

.bst-header__login,
.bst-header__cta {
    display: none;
}

.bst-nav__actions {
    display: none;
}

.bst-menu-btn {
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bst-menu-btn span {
    display: block;
    width: 1.125rem;
    height: 1px;
    background: currentColor;
    position: relative;
}

.bst-menu-btn span:first-child {
    transform: translateY(-4px);
}

.bst-menu-btn span:last-child {
    transform: translateY(4px);
    margin-top: -1px;
}

.bst-header.is-open .bst-menu-btn span:first-child {
    transform: rotate(45deg);
}

.bst-header.is-open .bst-menu-btn span:last-child {
    transform: rotate(-45deg);
    margin-top: -1px;
}

.bst-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 12, 34, .35);
    z-index: 40;
}

@media (min-width: 1024px) {
    .bst-nav {
        display: flex;
        flex: 1;
        margin-inline-start: 1.5rem;
    }

    .bst-nav__actions--mobile {
        display: none !important;
    }

    .bst-header__login,
    .bst-header__cta {
        display: inline-flex;
    }

    .bst-menu-btn,
    .bst-nav-backdrop {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .bst-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        inset-block: var(--bst-header-h) 0;
        inset-inline-end: 0;
        width: min(20rem, 100%);
        background: var(--bst-canvas);
        color: var(--bst-ink);
        padding: 1.25rem;
        gap: .25rem;
        transform: translateX(110%);
        transition: transform .3s var(--bst-ease);
        z-index: 50;
        overflow-y: auto;
        border-inline-start: 1px solid var(--bst-line);
    }

    html[dir="rtl"] .bst-nav {
        transform: translateX(-110%);
    }

    .bst-header.is-open .bst-nav {
        transform: translateX(0);
    }

    .bst-nav__link {
        height: 2.75rem;
        justify-content: flex-start;
    }

    .bst-nav__actions--mobile {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        margin-top: 1.25rem;
    }
}

.bst-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: .5rem 1.25rem;
    border-radius: var(--bst-radius);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: opacity .2s var(--bst-ease), background-color .2s var(--bst-ease);
}

.bst-btn:hover {
    opacity: .86;
}

.bst-btn--solid {
    background: var(--bst-accent);
    color: #fff;
}

.bst-btn--light {
    background: #fff;
    color: #000;
}

.bst-btn--ghost {
    background: transparent;
    color: inherit;
}

.bst-btn--outline {
    border-color: currentColor;
    background: transparent;
}

.bst-hero {
    position: relative;
    isolation: isolate;
    min-height: 70vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--bst-header-h) + 5vh);
    padding-bottom: 4rem;
    overflow: hidden;
    background: #140c22;
}

.bst-hero__bg {
    position: absolute;
    inset: 0;
    background: #140c22 url("hero-dunes.svg") center / cover no-repeat;
    z-index: 0;
}

.bst-hero__dither,
.bst-hero__veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bst-hero__dither {
    background-image: radial-gradient(rgba(0, 0, 0, .45) .7px, transparent .8px);
    background-size: 3px 3px;
    mix-blend-mode: soft-light;
    opacity: .4;
}

.bst-hero__veil {
    background-image: linear-gradient(#ffffff1f, #ffffff1d 11%, #fff0 32%);
}

.bst-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding-inline: 1.25rem;
}

.bst-hero__copy {
    width: min(var(--bst-hero-copy), 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bst-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: var(--bst-eyebrow);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--bst-ink-muted);
}

.bst-eyebrow--light {
    color: #fff;
    text-shadow: 0 6px 6px #00000059;
}

.bst-dot {
    width: .5rem;
    height: .5rem;
    flex-shrink: 0;
    background: var(--bst-accent);
}

.bst-hero .bst-dot {
    background: #fff;
}

.bst-display {
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.bst-display--xl {
    font-size: var(--bst-display-xl);
}

.bst-display--md {
    font-size: var(--bst-display-md);
}

.bst-display span {
    display: block;
}

.bst-display .is-muted {
    color: var(--bst-ink-muted);
    font-weight: 600;
}

.bst-lead {
    margin: 0;
    font-size: var(--bst-lead);
    line-height: 1.5;
    color: inherit;
}

.bst-hero .bst-lead {
    text-shadow: 0 6px 6px #00000059;
    max-width: 36rem;
}

.bst-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
}

@media (max-width: 767px) {
    .bst-hero {
        min-height: 62vh;
        padding-top: calc(var(--bst-header-h) + 2.5rem);
        padding-bottom: 3rem;
    }

    .bst-hero__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .bst-hero__actions .bst-btn {
        width: 100%;
    }
}

.bst-band {
    position: relative;
    border-block: 1px solid var(--bst-line);
    background: var(--bst-canvas);
}

.bst-band--surface {
    background: var(--bst-surface);
}

.bst-hatch {
    position: relative;
}

.bst-hatch::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        45deg,
        color-mix(in srgb, var(--bst-hatch) 15%, transparent) 0,
        color-mix(in srgb, var(--bst-hatch) 15%, transparent) 1.75px,
        transparent 1.75px,
        transparent 7.81px
    );
}

.bst-frame {
    position: relative;
    border-inline: 1px solid var(--bst-line);
    background: var(--bst-canvas);
}

.bst-trust {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem;
    min-width: 0;
}

.bst-trust p {
    margin: 0;
    color: var(--bst-ink-soft);
    font-weight: 500;
    font-size: .875rem;
}

.bst-marquee {
    overflow: hidden;
    position: relative;
    min-height: 3.2rem;
    width: 100%;
    min-width: 0;
}

.bst-marquee__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 3rem;
    animation: bst-marquee 28s linear infinite;
}

.bst-marquee img {
    height: 30px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .8;
}

@keyframes bst-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

html[dir="rtl"] .bst-marquee__track {
    animation-name: bst-marquee-rtl;
}

@keyframes bst-marquee-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

.bst-section {
    padding-block: 2.5rem;
}

@media (min-width: 768px) {
    .bst-trust {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.75rem 2.5rem;
        gap: 2rem;
    }

    .bst-trust p {
        width: 16rem;
        flex-shrink: 0;
    }

    .bst-section {
        padding-block: 3.5rem;
    }
}

.bst-section__head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.bst-section__intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bst-copy {
    margin: 0;
    color: var(--bst-ink-muted);
}

@media (min-width: 1024px) {
    .bst-section__intro {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    .bst-section__intro .bst-copy {
        width: 22.5rem;
        flex-shrink: 0;
    }
}

.bst-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--bst-line);
}

.bst-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    text-align: center;
    padding: 1rem .5rem;
    min-height: 7.5rem;
    border-top: 1px solid var(--bst-line);
    border-inline-start: 1px solid var(--bst-line);
    background: var(--bst-surface);
}

.bst-cell p {
    margin: 0;
    font-size: .875rem;
    line-height: 1.2;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.bst-cell svg {
    color: var(--bst-signal);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .bst-cell {
        min-height: 9.4rem;
        padding: 1.5rem;
        gap: 1rem;
    }

    .bst-cell p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .bst-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.bst-split {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--bst-line);
}

.bst-split__copy,
.bst-split__media {
    padding: 1.5rem;
}

.bst-split__copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.bst-split__copy h3 {
    margin: 0 0 .75rem;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
}

.bst-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.bst-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.bst-list i {
    width: .375rem;
    height: .375rem;
    background: var(--bst-bullet);
    flex-shrink: 0;
}

.bst-split__media img {
    width: 100%;
    border-radius: var(--bst-radius);
    background: var(--bst-panel);
}

@media (min-width: 1024px) {
    .bst-split {
        flex-direction: row;
        align-items: stretch;
    }

    .bst-split.is-flip {
        flex-direction: row-reverse;
    }

    .bst-split__copy {
        width: 35rem;
        flex-shrink: 0;
        padding: 2.5rem;
        border-inline-end: 1px solid var(--bst-line);
        gap: 0;
    }

    .bst-split__media {
        flex: 1;
        min-width: 0;
        padding: 0;
        background: var(--bst-panel);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bst-split__media img {
        border-radius: 0;
        height: 100%;
        object-fit: cover;
    }
}

.bst-cards {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--bst-line);
}

.bst-card {
    padding: 1.5rem;
    border-top: 1px solid var(--bst-line);
    border-inline-start: 1px solid var(--bst-line);
    background: var(--bst-surface);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    min-width: 0;
}

.bst-card h3 {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.3;
}

.bst-card p {
    margin: 0;
    color: var(--bst-ink-muted);
}

.bst-card img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

@media (min-width: 640px) {
    .bst-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .bst-cards.bst-cards--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .bst-cards.bst-cards--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.bst-shots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.bst-shot img {
    width: 100%;
    border: 1px solid var(--bst-line);
    border-radius: var(--bst-radius);
    background: var(--bst-panel);
}

.bst-shot h5 {
    margin: .75rem 0 0;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .bst-shots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .bst-shots {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.bst-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.bst-plan {
    border: 1px solid var(--bst-line);
    background: var(--bst-surface);
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    text-align: center;
}

.bst-plan__badge {
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    background: var(--bst-ink);
    color: #fff;
    padding: .4rem 1.1rem;
    font-size: .8125rem;
    border-radius: var(--bst-radius);
}

html[dir="rtl"] .bst-plan__badge {
    transform: translate(50%, -50%);
}

.bst-plan__price {
    display: block;
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    margin: .5rem 0 1rem;
}

.bst-plan__price small {
    font-size: .9rem;
    font-weight: 500;
    color: var(--bst-ink-muted);
}

.bst-plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    text-align: start;
}

.bst-plan li {
    display: flex;
    gap: .5rem;
    align-items: flex-start;
    padding: .35rem 0;
    font-size: .9375rem;
}

.bst-plan .is-on {
    color: var(--bst-accent);
}

.bst-plan .is-off {
    color: var(--bst-signal);
}

@media (min-width: 768px) {
    .bst-plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .bst-plans {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.bst-faq {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--bst-line);
}

.bst-faq details {
    border-bottom: 1px solid var(--bst-line);
    background: var(--bst-canvas);
}

.bst-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.25rem;
}

.bst-faq summary::-webkit-details-marker {
    display: none;
}

.bst-faq summary::after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-inline-end: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform .2s var(--bst-ease);
}

.bst-faq details[open] summary::after {
    transform: rotate(225deg);
}

.bst-faq details p {
    margin: 0 0 1.15rem;
    color: var(--bst-ink-muted);
}

@media (min-width: 768px) {
    .bst-faq {
        grid-template-columns: 1fr 1fr;
        column-gap: 3rem;
    }
}

.bst-quotes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.bst-quote {
    background: var(--bst-ink);
    color: #fff;
    padding: 1.25rem;
}

.bst-quote h3 {
    margin: .5rem 0;
    font-size: 1.125rem;
}

.bst-quote p {
    color: rgba(255, 255, 255, .78);
}

.bst-quote__user {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1rem;
}

.bst-quote__user img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--bst-radius);
    object-fit: cover;
    border: 1px solid var(--bst-accent);
}

@media (min-width: 768px) {
    .bst-quotes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .bst-quotes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.bst-footer__cta {
    position: relative;
    min-height: 22rem;
    color: #fff;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bst-footer__cta-media {
    position: absolute;
    inset: 0;
    background: #140c22 url("hero-dunes.svg") center / cover no-repeat;
}

.bst-footer__cta-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 10%, rgba(20, 12, 34, .72) 100%);
}

.bst-footer__cta-copy {
    position: relative;
    padding-block: 3rem 2.5rem;
}

.bst-footer__title span {
    color: rgba(255, 255, 255, .72);
}

.bst-footer__lead {
    max-width: 36rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.bst-footer__row {
    display: grid;
    gap: 1.5rem;
    padding-block: 2.5rem;
}

.bst-footer__brand p {
    color: var(--bst-ink-muted);
    margin: .75rem 0 0;
}

.bst-logo--footer img {
    height: 36px;
    width: auto;
    max-width: 140px;
}

.bst-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .5rem;
}

.bst-footer__links a:hover {
    color: var(--bst-accent);
}

.bst-subscribe__label {
    display: block;
    font-weight: 600;
    margin-bottom: .5rem;
}

.bst-subscribe__row {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.bst-subscribe input {
    width: 100%;
    min-height: 2.75rem;
    border: 1px solid var(--bst-ink);
    border-radius: var(--bst-radius);
    padding: .75rem .9rem;
    background: #fff;
}

.bst-footer__legal {
    border-top: 1px solid var(--bst-ink);
    text-align: center;
    padding: .75rem 1rem;
    font-size: .875rem;
}

@media (min-width: 768px) {
    .bst-subscribe__row {
        flex-direction: row;
        align-items: stretch;
    }

    .bst-subscribe input {
        flex: 1;
    }
}

@media (min-width: 960px) {
    .bst-footer__row {
        grid-template-columns: 1.2fr .8fr 1.2fr;
        align-items: start;
    }
}

.bst-page {
    padding-top: calc(var(--bst-header-h) + 2rem);
    padding-bottom: 3rem;
}

.bst-page__title {
    margin: 0 0 1.5rem;
}

.bst-prose {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bst-prose h1,
.bst-prose h2,
.bst-prose h3 {
    line-height: 1.3;
}

.bst-prose img,
.bst-prose video,
.bst-prose iframe {
    max-width: 100%;
    height: auto;
}

.bst-prose table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bst-prose pre {
    overflow-x: auto;
}

body.bst-nav-lock {
    overflow: hidden;
}

@media (max-width: 359px) {
    .bst-wrap,
    .bst-header__bar,
    .bst-hero__inner {
        padding-inline: .875rem;
    }

    .bst-cell {
        padding: .85rem .35rem;
    }
}


@media (prefers-reduced-motion: reduce) {
    .bst-marquee__track,
    .bst-header,
    .bst-nav {
        animation: none !important;
        transition: none !important;
    }
}
