/* =========================================================
   FINTECH DASHBOARD — COMMAND SCREEN EDITION
   تطوير شاشة الداشبورد لتبدو كنظام مالي حي
========================================================= */

.vp-fintech-dashboard {
    background:
        radial-gradient(circle at 18% 14%, rgba(124, 196, 255, 0.16), transparent 30%),
        radial-gradient(circle at 86% 72%, rgba(27, 198, 171, 0.12), transparent 36%),
        radial-gradient(circle at 50% 110%, rgba(124, 196, 255, 0.08), transparent 42%),
        linear-gradient(180deg, #05070d 0%, #07111f 50%, #05070d 100%);
    border-top: 1px solid rgba(124, 196, 255, 0.08);
}

.vp-fintech-dashboard::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .65), transparent 82%);
}

.vp-fintech-dashboard__head {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    text-align: center;
    margin-bottom: 110px;
}

.vp-fintech-dashboard__eyebrow {
    align-self: center;
}

.vp-fintech-dashboard__title {
    max-width: 1120px;
    margin: 0;
    text-shadow:
        0 18px 70px rgba(0, 0, 0, 0.34),
        0 0 42px rgba(124, 196, 255, 0.06);
}

.vp-fintech-dashboard__text {
    max-width: 760px;
    margin: 0;
}

.vp-fintech-dashboard__preview {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.16fr 0.84fr;
    gap: 34px;
    align-items: stretch;
}

.vp-fintech-dashboard__preview::before {
    content: "";
    position: absolute;
    inset: 8% 18% auto 6%;
    height: 320px;
    pointer-events: none;
    background:
        radial-gradient(circle, rgba(124, 196, 255, 0.16), transparent 70%);
    filter: blur(28px);
    opacity: 0.75;
}

.vp-fintech-dashboard__screen {
    position: relative;
    overflow: hidden;
    min-height: 750px;
    border-radius: 42px;
    padding: 36px;
    transform: translateZ(0);
}

.vp-fintech-dashboard__screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(124, 196, 255, 0.22), transparent 34%),
        radial-gradient(circle at 92% 22%, rgba(27, 198, 171, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 42%);
    pointer-events: none;
}

.vp-fintech-dashboard__screen::after {
    content: "";
    position: absolute;
    left: -45%;
    top: 0;
    width: 38%;
    height: 100%;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.10),
            transparent);
    transform: skewX(-18deg);
    animation: fintechDashboardScan 6.4s ease-in-out infinite;
}

.vp-fintech-dashboard__screen-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 30px;
}

.vp-fintech-dashboard__screen-top strong {
    text-shadow: 0 0 24px rgba(124, 196, 255, 0.38);
}

.vp-fintech-dashboard__balance-card {
    position: relative;
    z-index: 2;
    padding: 32px;
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 12%, rgba(124, 196, 255, 0.15), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026));
    box-shadow:
        0 20px 64px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, .025) inset;
}

.vp-fintech-dashboard__balance-card::before {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(27, 198, 171, 0.18), transparent 70%);
    pointer-events: none;
}

.vp-fintech-dashboard__balance-card>strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 20px;
    color: #ffffff;
    font-size: clamp(46px, 5.2vw, 92px);
    line-height: 0.88;
    letter-spacing: -0.075em;
    font-weight: 780;
    text-shadow:
        0 20px 60px rgba(0, 0, 0, .38),
        0 0 34px rgba(124, 196, 255, .10);
}

.vp-fintech-dashboard__profit {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 19px 22px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(27, 198, 171, 0.14), rgba(27, 198, 171, 0.055));
    border: 1px solid rgba(27, 198, 171, 0.20);
    box-shadow:
        0 16px 46px rgba(27, 198, 171, 0.08);
}

.vp-fintech-dashboard__profit b {
    color: #6ee7d6;
    font-size: 21px;
    line-height: 1;
    text-shadow: 0 0 22px rgba(27, 198, 171, 0.28);
}

.vp-fintech-dashboard__actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.vp-fintech-dashboard__action {
    position: relative;
    overflow: hidden;
    min-height: 122px;
    padding: 22px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.022));
    border: 1px solid rgba(124, 196, 255, 0.11);
    transition:
        transform .45s ease,
        border-color .45s ease,
        background .45s ease,
        box-shadow .45s ease;
}

.vp-fintech-dashboard__action::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 0%, rgba(124, 196, 255, 0.14), transparent 44%);
    opacity: 0;
    transition: opacity .45s ease;
}

.vp-fintech-dashboard__action:hover,
.vp-fintech-dashboard__action.is-active {
    transform: translateY(-6px);
    border-color: rgba(27, 198, 171, 0.30);
    background:
        linear-gradient(145deg, rgba(27, 198, 171, 0.12), rgba(255, 255, 255, 0.035));
    box-shadow:
        0 22px 60px rgba(27, 198, 171, 0.12),
        0 0 36px rgba(124, 196, 255, 0.08);
}

.vp-fintech-dashboard__action:hover::before,
.vp-fintech-dashboard__action.is-active::before {
    opacity: 1;
}

.vp-fintech-dashboard__action span {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 20px;
    font-size: 25px;
    filter: drop-shadow(0 0 16px rgba(124, 196, 255, 0.18));
}

.vp-fintech-dashboard__action strong {
    position: relative;
    z-index: 2;
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
}

.vp-fintech-dashboard__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.vp-fintech-dashboard__mini-card {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    padding: 24px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.050), rgba(255, 255, 255, 0.018));
    border: 1px solid rgba(124, 196, 255, 0.095);
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.vp-fintech-dashboard__mini-card::before {
    content: "";
    position: absolute;
    right: -54px;
    top: -64px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(124, 196, 255, 0.13), transparent 70%);
}

.vp-fintech-dashboard__mini-card:hover,
.vp-fintech-dashboard__mini-card.is-active {
    transform: translateY(-5px);
    border-color: rgba(124, 196, 255, 0.22);
    box-shadow:
        0 20px 58px rgba(0, 0, 0, .24),
        0 0 30px rgba(124, 196, 255, .08);
}

.vp-fintech-dashboard__mini-card strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 19px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.vp-fintech-dashboard__side {
    display: grid;
    gap: 34px;
}

.vp-fintech-dashboard__side-card {
    position: relative;
    overflow: hidden;
    min-height: 358px;
    border-radius: 36px;
    padding: 34px;
}

.vp-fintech-dashboard__side-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    right: -78px;
    top: -88px;
    background:
        radial-gradient(circle, rgba(124, 196, 255, 0.18), transparent 68%);
}

.vp-fintech-dashboard__side-card::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    height: 1px;
    background:
        linear-gradient(90deg, rgba(124, 196, 255, .7), rgba(27, 198, 171, .35), transparent);
    box-shadow: 0 0 24px rgba(124, 196, 255, .35);
}

.vp-fintech-dashboard__side-card strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 40px;
    max-width: 380px;
    color: #ffffff;
    font-size: clamp(32px, 3.1vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.065em;
    text-shadow:
        0 16px 54px rgba(0, 0, 0, .32);
}

@keyframes fintechDashboardScan {
    0% {
        left: -50%;
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    56% {
        opacity: 1;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}

@media (max-width: 1080px) {

    .vp-fintech-dashboard__preview {
        grid-template-columns: 1fr;
    }

    .vp-fintech-dashboard__head {
        gap: 24px;
        margin-bottom: 72px;
    }

    .vp-fintech-dashboard__text {
        max-width: 760px;
    }

    .vp-fintech-dashboard__screen {
        min-height: 680px;
    }
}

@media (max-width: 720px) {
    .vp-fintech-dashboard__screen {
        min-height: auto;
        border-radius: 30px;
        padding: 22px;
    }

    .vp-fintech-dashboard__balance-card {
        padding: 22px;
        border-radius: 24px;
    }

    .vp-fintech-dashboard__balance-card>strong {
        font-size: clamp(36px, 11vw, 56px);
    }

    .vp-fintech-dashboard__actions,
    .vp-fintech-dashboard__grid {
        grid-template-columns: 1fr;
    }

    .vp-fintech-dashboard__profit {
        flex-direction: column;
        align-items: flex-start;
    }

    .vp-fintech-dashboard__side-card {
        min-height: 250px;
        border-radius: 28px;
        padding: 26px;
    }
}

.vp-fintech-dashboard__side-card {
    transition:
        transform .65s cubic-bezier(.16, 1, .3, 1),
        opacity .65s ease,
        border-color .65s ease,
        box-shadow .65s ease;
}

.vp-fintech-dashboard__side-card.is-active {
    transform: translateY(-8px);

    border-color: rgba(124, 196, 255, .26);

    box-shadow:
        0 34px 90px rgba(0, 0, 0, .36),
        0 0 46px rgba(124, 196, 255, .12);
}

.vp-fintech-dashboard__side-card.is-dimmed {
    opacity: .58;
}

.vp-fintech-dashboard.is-dashboard-pulse::before {
    animation: fintechDashboardAmbient 1.2s ease;
}

.vp-fintech-dashboard__action.is-pulse {
    animation: fintechDashboardPulse .7s ease;
}

@keyframes fintechDashboardPulse {

    0% {
        transform: translateY(-6px) scale(1);
    }

    45% {
        transform: translateY(-10px) scale(1.03);
    }

    100% {
        transform: translateY(-6px) scale(1);
    }
}

@keyframes fintechDashboardAmbient {

    0% {
        opacity: .55;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .55;
    }
}