/* From Uiverse.io by barisdogansutcu */ 
svg {
 width: 3.25em;
 transform-origin: center;
 animation: rotate4 2s linear infinite;
}
circle {
 fill: none;
 stroke: hsl(190, 100%, 50%);
 stroke-width: 2;
 stroke-dasharray: 1, 200;
 stroke-dashoffset: 0;
 stroke-linecap: round;
 animation: dash4 1.5s ease-in-out infinite;
}
@keyframes rotate4 {
 100% {
  transform: rotate(360deg);
 }
}
@keyframes dash4 {
 0% {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
 }
 50% {
  stroke-dasharray: 90, 200;
  stroke-dashoffset: -35px;
 }
 100% {
  stroke-dashoffset: -125px;
 }
}
.loader {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease, opacity 0.4s ease;
    opacity: 1;
}

body:not(.loaded) {
    overflow: clip;
}
body.loaded .loader {
    opacity: 0;
    pointer-events: none;
}



.heading {
    transition: all 0.5s ease, opacity 0.5s ease 0.5s;
    width: 100%;
    height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    position: relative;
    border-bottom: 2px solid cyan;
}
.title {
        transition: all 0.5s ease, opacity 0.5s ease 0.75s;
    font-size: 200%;
    margin: 0;
    padding: 0;
    opacity: 0;
}
.subtitle {
    transition: all 0.5s ease, opacity 0.5s ease 0.95s;
    font-size: 115%;
    margin: 0;
    padding: 0;
    margin-bottom: 5vh;
    opacity: 0;
}
.landing-btn {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: #00ced1;
    color: #0a0e14;
    opacity: 1;
    margin: 0 2vw;
}
.link-con {
    width: fit-content;
    min-width: 50%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    transition: all 0.2s ease, opacity 0.5s ease 1.5s;
    opacity: 0;
}
.landing-btn:hover {
    background: #00fbff;
    color: #0a0e14;
}
.arrowDown {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: all 0.5s ease, opacity 0.5s ease 2s, bottom 0.5s ease 2s, outline 0.15s ease, outline-offset 0.15s ease;
    pointer-events: none;
    cursor: pointer;
    font-size: 150%;
    text-decoration: none;
    color: cyan;
    outline: 2px solid transparent;
    border-radius: 100%;
}
.arrowDown:hover {
    outline: 2px solid white;
    outline-offset: 5px;
}

.description {
    transition: all 0.5s ease, opacity 0.5s ease 2s;
    opacity: 0;
    height: 100%;
    
}
.description .section-title {
    width: 100%;
    height: fit-content;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.section-title .desc-header {
    font-size: 165%;
    margin-left: 4vw;
}
.description .features {
    width: calc(100% - 8vw);
    height: fit-content;
    min-height: 100vh;
    margin: 0 4vw;
    display: grid;
    justify-items: center;
    gap: 20px;
    /*grid-template-columns: repeat(auto-fit, minmax(max(250px, 100% / 3), 1fr));*/
    grid-template-columns: repeat(3, 1fr);
}
.features .feature-item {
    height: fit-content;
    min-height: 25vh;
    padding: 5vh 1vw;
    padding-left: 1.5vw;
    padding-top: 3vh;
    outline: 1px solid cyan;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(3px);
    border-radius: 10px;
}
.features .feature-item:last-child {
    grid-column: span 2;
}
.feature-item .icon-con {
    width: 100%;
    height: fit-content;
    padding: 5px 0;
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    font-size: 150%;
}
.feature-item .feature-title {
    font-size: 135%;
    width: 100%;
    height: fit-content;
    padding: 5px 0;
    text-align: left;
    margin-bottom: 5vh;
}
.feature-item .feature-desc {
    width: 100%;
    height: fit-content;
    padding: 5px 0;
    text-align: left;
}
.features .feature-item:last-child .feature-desc {
    width: 75%;
}

.app-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: var(--bg-nav);
    margin-top: 24px;
}
.footer-inner {
    max-width: 940px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--offline-txt-color);
    font-size: 0.78rem;
    height: fit-content;
    min-height: 24px;
}
.footer-inner nav { display: flex; gap: 16px; }
.footer-inner a {
    color: rgb(190, 190, 190,0.85);
    text-decoration: none;
    position: relative;
}
.footer-inner a:hover { color: cyan; }
.footer-inner a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, 0);
    height: 2px;
    background-color: white;
    color: white;
    pointer-events: none;
    width: 0;
    overflow: clip;
    transition: all 0.25s ease;
}
.footer-inner a:hover::after {
    width: 100%;
}
.footer-ver { opacity: 0.5; }
.footer-inner .copyright {
    color: rgb(190, 190, 190,0.5);
}

body.loaded .heading, body.loaded .title, body.loaded .subtitle, body.loaded .landing-btn, body.loaded .description, body.loaded .link-con {
    opacity: 1;
}
body.loaded .arrowDown {
    pointer-events: all;
    opacity: 1;
    bottom: 15%;
}



@media only screen and (max-width: 850px) {
    .description .section-title {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .section-title .desc-header {
        margin-left: 0;
    }
    .description .features {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    .features .feature-item {
        margin: 2vh 0;
    }
    .features .feature-item:last-child {
        grid-column: 1 / -1;
    }
}
@media only screen and (max-width: 700px) {
    .features .feature-item {
        width: 75vw;
        margin: 0 auto;
    }
    .features .feature-item:last-child {
        margin-bottom: 5vh;
    }
    .description .features {
        gap: 25px;
        grid-template-columns: 1fr;
    }
    .link-con {
        flex-direction: column;
    }
    .link-con .landing-btn {
        margin: 2vh 0;
    }
}