body.landing {
    --land-card-bg: linear-gradient(45deg, rgba(0,0,0,0.1) 10%, rgba(10,10,10,0.35) 90%);
    --land-card-color: black;
}



.landing-header {
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    padding: 10px 0;
    padding-top: 0;
    background: transparent;
    color: var(--text);
}
.landing-header .la-h-col {
    width: 50%;
    height: fit-content;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.la-h-col .col-inner {
    width: 80%;
    height: fit-content;
    min-height: 50vh;
    padding: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 16px;
    border-top-right-radius: 64px;
}
.la-h-col .col-inner h1 {
    font-family: "RajBold", sans-serif;
    font-size: calc(5vh + 2vw);
    margin-bottom: 5px;
    color: rgb(255, 255, 255);
}
.la-h-col .col-inner p {
    color: rgb(230, 230, 230);
}
.la-h-col.col2 {
    position: relative;
}
.la-h-col.col2 img {
    width: 80%;
    max-width: 450px;
    height: auto;
    min-width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 16px;
}
.la-h-col.col2 img.img1 {
    transform: 
        translate(-55%, -25%)
        rotate(-5deg)
        scale(0.5);
    z-index: 1;
}
.la-h-col.col2 img.img2 {
    transform: 
        translate(-25%, -55%)
        rotate(10deg)
        scale(0.5);
    z-index: 2;
}
.la-h-col.col2 img.img3 {
    transform: 
        translate(-70%, -60%)
        rotate(-10deg)
        scale(0.48);
    z-index: 3;
}



.landing-section {
    width: 100%;
    height: fit-content;
    padding: 10px 0;
    background: transparent;
    color: var(--text);
    position: relative;
    z-index: 1;
    padding: 0;
    display: flex;
    align-items: stretch;
    align-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.landing-section .feature-card {
    background: var(--land-card-bg);
    backdrop-filter: 
        brightness(0.75)
        saturate(85%);
    color: var(--land-card-color);
    width: fit-content;
    height: auto;
    min-height: 10px;
    min-width: 10px;
    padding: calc(2vw + 2vh);
    z-index: 15;
    border-radius: 12px;
    max-width: 30vw;
    mix-blend-mode: difference;
    box-shadow:
        inset 1px 1px 3px 0px rgba(255,255,255,0.1),
        3px 3px 4px 0px rgba(0,0,0,0.4);
}
.feature-card .feature-title {
    font-family: "RajBold";
    font-size: 200%;
}
.feature-card .feature-desc {
    font-size: 100%;
}






@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) body.landing {
        --land-card-bg: linear-gradient(45deg, rgba(104, 121, 128, 0.1) 10%, rgba(115, 175, 194, 0.35) 90%);
        --land-card-color: white;
    }
}
:root[data-theme="dark"] body.landing {
    --land-card-bg: linear-gradient(45deg, rgba(104, 121, 128, 0.1) 10%, rgba(115, 175, 194, 0.35) 90%);
    --land-card-color: white;
}
@media only screen and (max-width: 850px) {
    body.landing {
        --land-card-color: white;
    }
}
@media only screen and (max-width: 850px) and (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) body.landing {
        --land-card-bg: linear-gradient(45deg, rgba(61, 72, 77, 0.1) 10%, rgba(132, 200, 212, 0.35) 90%);
        --land-card-color: white;
    }
    :root:not([data-theme="light"]) .landing-section .feature-card {
        box-shadow:
            inset 1px 1px 3px 0px rgba(255,255,255,0.1),
            3px 3px 4px 0px rgba(0,0,0,0.2);
    }
}
@media only screen and (max-width: 850px) {
    :root[data-theme="dark"] body.landing {
        --land-card-bg: linear-gradient(45deg, rgba(61, 72, 77, 0.1) 10%, rgba(132, 200, 212, 0.35) 90%);
        --land-card-color: white;
    }
    :root[data-theme="dark"] .landing-section .feature-card {
        box-shadow: inset 1px 1px 3px rgba(255,255,255,.1), 3px 3px 4px rgba(0,0,0,.2);
    }
}