/* dashboard 3D perspective */
/* .perspective {
    transform-style: preserve-3d;
    transform: rotateX(12deg) rotateY(-8deg);
    transition: transform 0.4s ease;
} */

/* card styling */
.ui-card {
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.75) 0%,
            rgba(2, 6, 23, 0.9) 100%);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    transition: transform .35s ease, box-shadow .35s ease;
}

/* hover lift */
.ui-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(45, 212, 191, 0.15);
}

.hero-title {
    font-size: 60px;
}

/* title glow */
.hero-title span {
    text-shadow:
        0 0 20px rgba(45, 212, 191, .45),
        0 0 60px rgba(45, 212, 191, .25);
}

.dashboard {
    padding-bottom: 4.5rem;
}

.dash-ui {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid gray;

    /* padding: 2rem; */
    /* p-8 = 32px */

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    grid-auto-rows: minmax(180px, auto);

    gap: 1.5rem;
    padding-bottom: 70px;
    /* gap-6 = 24px */
}

.perspective {
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-6deg);
    transition: transform 0.4s ease;
}

.hero-py {
    padding-top: 120px;
}

@media (max-width: 1280px) {
    .perspective {
        transform: rotateX(6deg) rotateY(-4deg);
    }
}

@media (max-width: 1024px) {
    .perspective {
        transform: none;
    }
}

@media (max-height: 820px) {
    .hero-py {
        padding-top: 26px;
    }

    .hero-title {
        font-size: 48px;
    }

    .dash-ui {
        grid-auto-rows: minmax(120px, auto) !important;
        padding-bottom: 70px;
    }
}

@media (max-width: 768px) {

    .hero-py {
        padding-top: 22px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 16px;
        margin: auto;
    }

    .dashboard {
        width: 100%;
        padding-bottom: 1.5rem;
    }

    .dash-ui {
        background: rgba(255, 255, 255, 0.00);
        backdrop-filter: blur(0px);
        border: none;
        padding: 10px;
    }

    .ui-card {
        padding-bottom: 10px;
    }

}