* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Inter, "Crimson Text";
    background-color: #101111;
    color: var(--content-color);
    overflow-y: auto;
    height: 100vh;
}

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

ul {
    list-style: none;
}

/* ================================
            App Main 
================================ */


/* ================================
            App Main Header
================================ */

/* App Header */
.app-header {
    position: fixed;
    width: 100%;
    white-space: nowrap;
    /* background: var(--main-nav-color);
    border-bottom: solid 1px var(--main-nav-color);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); */
    z-index: 1000;
}

/* Wrapper */
.app-header-wrapper {
    display: flex;
    margin: 0 1.25rem;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.app-navigation-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    width: 100%;
    max-height: 5rem;
}

/* Containers */
.logo-container,
.img-container,
.title-container,
.navigation-links ul,
.sign-in-container {
    display: flex;
}

/* Logo Container */
.logo-container {
    align-items: center;
}

/* Img Container */
.img-container {
    width: 6.25rem;
    height: 5.0625rem;
    overflow: visible;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Title Container */
.title-container {
    flex-direction: column;
    gap: .125rem;
}

.title-container .logo-title {
    font-size: .9375rem;
    font-weight: 400;
}

.title-container .logo-description {
    font-size: .75rem;
    font-weight: 400;
    color: #c2c2c2;
}

/* Navigational Links Container */
.navigation-links {
    margin: 0 auto;
}

.navigation-links ul {
    gap: 3.125rem;
}

.links {
    padding: .625rem;
    border-radius: .375rem;
    font-size: 1.0625rem;
    font-weight: 400;
    transition: background 0.3s ease,
        opacity 0.3s ease;
}

/* Sign In Buttons Container */
.sign-in-container {
    justify-content: flex-end;
    gap: 16px;
}

.sign-in-container a {
    color: var(--content-color);
    padding: .4375rem .625rem;
    border-radius: .375rem;
    font-size: 1.0625rem;
    font-weight: 400;
    background: none;
    transition: background 0.3s ease,
        opacity 0.3s ease;
}

.login {
    border: none;
}

.signup {
    border: solid .0625rem #fff;
}

/* Navigation Effects */
.links:hover,
.sign-in-container a:hover {
    background: #32355e;
    opacity: 0.8;
}

/* Scroll Effects */
.app-header,
.app-header-wrapper,
.app-navigation-bar,
.logo-container,
.logo-description,
.logo-title,
.navigation-links,
.sign-in-container {
    transition:
        margin 0.6s ease-in-out,
        padding 0.6s ease-in-out,
        width 0.6s ease-in-out,
        opacity 0.6s ease-in-out,
        backdrop-filter 0.6s ease-in-out,
        background 0.6s ease-in-out,
        color 0.6s ease-in-out,
        border-radius 0.6s ease-in-out,
        box-shadow 0.6s ease-in-out,
        transform 0.6s ease-in-out;
}

.app-header.active {
    margin-top: 1.25rem;
}

.app-header-wrapper.active {
    margin: 0 auto;
}

.app-navigation-bar.active {
    width: 78.75rem;
    justify-content: space-between;
    background: #2a348961;
    padding: 0 1.875rem;
    border-radius: 1.875rem;
    backdrop-filter: blur(.625rem);
    box-shadow: 0 .3125rem .3125rem 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.logo-container.active .title-container .logo-description {
    position: absolute;
    opacity: 0;
    user-select: none;
}

.sign-in-container.active .signup {
    color: #000;
    background: #fff;
}

/* ================================
            App Main Layout
================================ */

/* Main Layout */
.app-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

/* ================================
            Hero Section
================================ */

.hero-section {
    position: relative;
    background: var(--hero-section-color);
    min-height: 100vh;
}

/* Contents */
.hero-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12.5rem;
}

/* Fade Group */
.fade-hero-contents {
    position: fixed;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease,
        opacity 0.4s ease;
    will-change: transform, opacity;
    align-items: center;
    gap: 2rem;
    z-index: 0;
}

/* Hero Content Title */
.main-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* H1 Styles */
.main-text-container h1 {
    font-size: 4.625rem;
    font-weight: 700;
}

/* Highlighted Text */
.highlighted {
    background: var(--hero-title-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 900;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-shadow: 0 0 1.875rem rgba(38, 0, 255, 0.25);
    background-size: 200% 200%;
    animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hero Content Description */
.description-container {
    display: flex;
    max-width: 65.625rem;
}

.description-container span {
    text-align: center;
    font-size: 1.0625rem;
    font-weight: 400;
}

/* Hero Content Buttons */
.buttons-container {
    display: flex;
    align-items: center;
    gap: 18px;
}

.buttons-container a {
    padding: .625rem .5rem;
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 400;
    border-radius: .375rem;
    border: none;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.get-started {
    border: 1px solid var(--hero-title-color) !important;
    background: var(--hero-title-color);
    background-size: 300% 300%;
    animation: gradientButtonMove 6s ease infinite;
}

@keyframes gradientButtonMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.learn-more {
    background: none;
}

.get-started:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 .625rem 1.875rem rgba(213, 61, 190, 0.35);
}

.learn-more:hover {
    transform: translateY(-0.125rem);
}

/* Info Container */
.info-container {
    display: flex;
    align-items: center;
    gap: .9375rem;
    inset: .625rem;
}

.info-container span {
    font-size: .875rem;
    font-weight: 300;
    color: #c5c5c5;
    padding: .25rem 1.25rem;
    border-radius: 1.875rem;
    background: #32355e;
    border: dashed .0625rem #8088ED;
}

.info-container .dot {
    width: .25rem;
    height: .25rem;
    background: #8088ED;
    border-radius: 50%;
}

/* Hero Content Carousel */
.carousel-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 72.5rem;
    min-height: clamp(27rem, 30vh, 37rem);
    padding: 1.5625rem;
    padding-bottom: 0;
    margin-top: 35.625rem;
    align-items: flex-end;
    justify-content: center;
    border-radius: .625rem .625rem 0 0;
    border: .0625rem solid #8088ED;
    background: #2a348961;
    backdrop-filter: blur(3px);
    border-bottom: none;
    z-index: 3;
    animation: appear ease;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
}

/* Carousel Content */
.carousel-contents {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: .625rem .625rem 0 0;
    background: #c2c2c2;
    overflow: hidden;
}

/* Carousel Lists */
.carousel-list {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
}

/* Carousel Items */
.items {
    flex: 0 0 100%;
    height: 100%;
    background: #2a348961;
}

/* Carousel Imgs */
.items img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

/* ================================
           Main Section
================================ */

.main-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    padding: 6rem 14.625rem;
    justify-content: center;
    box-shadow: 0 -0.625rem 1.875rem rgba(0, 0, 0, 1.555);
    background: #101111;
    z-index: 2;
}

/* ================================
           Features Section
================================ */

/* Feature Content */
.feature-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3.125rem;
}

/* Feature Head */
.feature-head {
    display: flex;
    flex-direction: column;
    animation: slideLeft linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
}

.section-title {
    padding-bottom: 1.875rem;
    color: #c2c2c2;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .1875rem;
}

.section-sub-title {
    padding-bottom: 1.525rem;
    font-size: 1.5625rem;
    font-weight: 500;
}

.section-description {
    width: 725px;
    color: #c2c2c2;
    font-size: .9375rem;
    font-weight: 300;
}

/* Feature Boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
}

.box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 31.5625rem;
    max-height: 31.5625rem;
    padding: 1.25rem;
    border-radius: 1.125rem;
    background: linear-gradient(133deg, #191F4A 8.81%, #192146 23.9%, #0F172B 109.29%);
    border: solid .0625rem #42457c;
    transition:
        transform 0.3s ease,
        border-color 0.2s ease,
        box-shadow 0.3s ease;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
}

.icon-box {
    position: relative;
    display: flex;
    background: #101111;
    justify-content: center;
    align-items: center;
    max-width: 2.5rem;
    margin-bottom: 1.5rem;
    padding: .5rem;
    border-radius: 1.0625rem;
    border: solid .0625rem #42457c;
    transition:
        transform 0.3s ease,
        border-color 0.2s ease,
        box-shadow 0.3s ease;
}

.box-title {
    display: flex;
    margin-bottom: 2.5rem;
    font-size: 1.375rem;
    font-weight: 700;
}

.box-description {
    display: flex;
    margin-bottom: 1.1875rem;
    font-size: .9375rem;
    font-weight: 200;
}

.box-tags {
    display: flex;
    gap: .875rem;
    flex-wrap: wrap;
}

.box-tags span {
    display: flex;
    background: #212222;
    font-size: .8125rem;
    font-weight: 150;
    padding: .25rem .375rem;
    border-radius: 1.25rem;
    border: dashed .0625rem #42457c;
}

/* Hover Effects */
.box:hover,
.box:hover .icon-box {
    transform: translateY(-0.375rem);
    border-color: #8088ED;
    box-shadow: 0 1.25rem 1.875rem rgba(38, 0, 255, 0.25);
}

/* ================================
            Help Section
================================ */

.help-section {
    margin-top: 5.625rem;
}

.help-wrapper {
    display: flex;
    width: 100%;
    margin: 0 auto;
    gap: 1.25rem;
}

.left-content {
    display: flex;
    flex-direction: column;
    height: auto;
    animation: slideLeft linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
}

.help-list {
    margin-top: 1.525rem;
}

.section-description {
    display: flex;
    flex-direction: column;
    gap: .425rem;
}

.section-description li::before {
    content: '•';
}

.right-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.85rem;
    gap: 1.575rem;
    border-radius: 1.25rem;
    background: linear-gradient(133deg, #161b3f 8.81%, #192146 23.9%, #0F172B 109.29%);
    border: solid .0625rem #42457c;
    box-shadow: 0 1.25rem 1.875rem rgba(38, 0, 255, 0.25);
    animation: slideRight linear;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
}

.right-content .box-title {
    font-size: 1.0625rem;
    margin-bottom: 0.525rem;
}

.right-content .box-description {
    font-size: 1rem;
    margin-bottom: 0.225rem;
}

.right-content .box-extra-info {
    font-size: 13px;
    font-weight: 200;
}

/* ================================
            App Footer
================================ */

/* App Footer */
.app-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 14.625rem;
    max-height: 15.625rem;
    background: linear-gradient(100deg, #d85e4075 8.57%, #84356775 38.25%, #300c8e75 105.09%);
}

/* Bar Footer */
.top-footer,
.bottom-footer {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Web Title */
.web-title {
    display: flex;
    align-items: center;
}

.web-title span {
    font-size: 1.875rem;
    font-weight: 700;
}

.image-wrapper {
    width: 6.25rem;
    height: 5rem;
    overflow: hidden;
}

.app-footer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Web Links */
.web-links {
    display: flex;
    gap: 2.3125rem;
}

.link-footer,
.links-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-footer {
    gap: .8125rem;
}

.link-footer span {
    font-size: 1.0125rem;
    font-weight: 600;
}

.links-column {
    gap: .225rem;
    font-size: 0.9rem;
    font-weight: 300;
}

.web-links a {
    transition: opacity 0.3s ease;
}

.web-links a:hover {
    opacity: 0.5;
}

/* Line */
.app-footer hr {
    opacity: 0.6;
}

/* Footer Bottom Bar */
.bottom-footer span {
    font-size: .9375rem;
    font-weight: 300;
}

.bottom-footer a {
    width: 2.125rem;
    height: 2.125rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bottom-footer a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-footer a:hover {
    transform: translateY(-3px);
}

/* ================================
    Scroll Animation Section
================================ */

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

@keyframes slideLeft {
    from {
        opacity: 0.5;
        transform: translateX(-6.25rem);
    }

    to {
        opacity: 1;
        transform: translateX(0rem);
    }
}

@keyframes slideRight {
    from {
        opacity: 0.5;
        transform: translateX(6.25rem);
    }

    to {
        opacity: 1;
        transform: translateX(0rem);
    }
}

/* ================================
    Responsive Layout Section
================================ */

/* Large Laptop */
@media (max-width: 1440px) {
    .title-container .logo-description {
        display: none;
    }

    .main-section {
        padding: 6rem 5rem;
    }

    .app-footer {
        padding: 1rem 5rem;
    }

    .section-description {
        width: auto;
    }

    .feature-boxes {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .help-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Laptop */
@media (max-width: 1024px) {
    .navigation-links ul {
        gap: 2rem;
    }

    .main-text-container h1 {
        font-size: 3.5rem;
    }

    .description-container {
        max-width: 50rem;
    }

    .buttons-container {
        gap: 1rem;
    }

    .info-container {
        align-items: flex-start;
        gap: 0.5rem;
    }

    .carousel-container {
        max-width: 60rem;
        margin-top: 25rem;
    }

    .main-section {
        padding: 6rem 3rem;
    }

    .feature-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .help-wrapper {
        gap: 2rem;
    }

    .right-content {
        padding: 1.5rem;
    }

    .app-footer {
        padding: 1rem 3rem;
    }

    .web-links {
        gap: 1.5rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .app-header-wrapper {
        margin: 0 0.75rem;
    }

    .app-navigation-bar {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }

    .navigation-links {
        display: none;
    }

    .sign-in-container {
        gap: 0.5rem;
    }

    .sign-in-container a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .hero-contents {
        margin-top: 8rem;
    }

    .main-text-container h1 {
        font-size: 2.5rem;
    }

    .description-container span {
        font-size: 0.9rem;
    }

    .buttons-container {
        flex-direction: column;
        gap: 1rem;
    }

    .buttons-container a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .info-container {
        display: none;
    }

    .carousel-container {
        max-width: 90%;
        margin-top: 20rem;
        padding: 1rem;
    }

    .main-section {
        padding: 4rem 1.5rem;
    }

    .feature-head {
        text-align: center;
    }

    .section-sub-title {
        font-size: 1.25rem;
    }

    .section-description {
        font-size: 0.8rem;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .box {
        max-width: none;
        padding: 1rem;
    }

    .box-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .box-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .help-section {
        margin-top: 3rem;
    }

    .help-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .left-content {
        text-align: center;
    }

    .right-content {
        padding: 1rem;
    }

    .app-footer {
        padding: 1rem 1.5rem;
    }

    .web-title span {
        font-size: 1.2375rem;
    }

    .web-links {
        gap: 2.5rem;
    }

    .bottom-footer {
        gap: 0.5rem;
        text-align: center;
    }

    .bottom-footer a {
        align-self: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .app-header.active {
        margin-top: 0.5rem;
    }

    .app-header-wrapper.active {
        margin: 0 0.5rem;
    }

    .app-navigation-bar.active {
        width: 95%;
        padding: 0 0.75rem;
        border-radius: 1rem;
    }

    .logo-container.active .title-container .logo-description {
        display: none;
    }

    .hero-contents {
        margin-top: 6rem;
    }

    .main-text-container h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .description-container span {
        font-size: 0.8rem;
        text-align: center;
    }

    .buttons-container {
        gap: 0.75rem;
    }

    .buttons-container a {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }

    .info-container span {
        font-size: 0.75rem;
        padding: 0.125rem 0.75rem;
    }

    .carousel-container {
        max-width: 95%;
        margin-top: 15rem;
        padding: 0.75rem;
    }

    .main-section {
        padding: 3rem 1rem;
    }

    .feature-head {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 0.8rem;
    }

    .section-sub-title {
        font-size: 1.1rem;
    }

    .section-description {
        font-size: 0.75rem;
    }

    .feature-boxes {
        gap: 0.75rem;
    }

    .box {
        padding: 0.75rem;
    }

    .icon-box {
        margin-bottom: 1rem;
        padding: 0.375rem;
    }

    .box-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .box-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .box-tags {
        gap: 0.5rem;
    }

    .box-tags span {
        font-size: 0.7rem;
        padding: 0.125rem 0.25rem;
    }

    .help-section {
        margin-top: 2rem;
    }

    .help-wrapper {
        gap: 1rem;
    }

    .left-content .section-sub-title {
        font-size: 1.2rem;
    }

    .section-description {
        font-size: 0.7rem;
    }

    .help-list ul li {
        font-size: 0.7rem;
    }

    .right-content {
        padding: 0.75rem;
        gap: 1rem;
    }

    .right-content .box-title {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }

    .right-content .box-description {
        font-size: 0.85rem;
        margin-bottom: 0.125rem;
    }

    .right-content .box-extra-info {
        font-size: 11px;
    }

    .app-footer {
        padding: 0.75rem 1rem;
    }

    .web-title {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .web-title span {
        font-size: 1.25rem;
    }

    .web-links {
        gap: 1rem;
    }

    .link-footer {
        gap: 0.5rem;
    }

    .link-footer span {
        font-size: 0.9rem;
    }

    .links-column {
        gap: 0.125rem;
        font-size: 0.8rem;
    }

    .bottom-footer span {
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .app-header-wrapper {
        margin: 0 0.5rem;
    }

    .app-navigation-bar {
        padding: 0.5rem 0.75rem;
    }

    .img-container {
        width: 5rem;
        height: 4rem;
    }

    .title-container .logo-title {
        font-size: 0.8rem;
    }

    .sign-in-container a {
        padding: 0.375rem 0.5rem;
        font-size: 0.8rem;
    }

    .hero-contents {
        margin-top: 5rem;
    }

    .main-text-container h1 {
        font-size: 1.8rem;
    }

    .description-container {
        max-width: none;
    }

    .description-container span {
        font-size: 0.75rem;
    }

    .buttons-container a {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .info-container span {
        font-size: 0.7rem;
        padding: 0.1rem 0.5rem;
    }

    .carousel-container {
        margin-top: 12rem;
        padding: 0.5rem;
    }

    .main-section {
        padding: 2rem 0.75rem;
    }

    .feature-head {
        margin-bottom: 1.5rem;
    }

    .section-sub-title {
        font-size: 1rem;
    }

    .section-description {
        font-size: 0.7rem;
    }

    .feature-boxes {
        gap: 0.5rem;
    }

    .box {
        padding: 0.5rem;
    }

    .box-title {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .box-description {
        font-size: 0.7rem;
        margin-bottom: 0.375rem;
    }

    .box-tags span {
        font-size: 0.65rem;
        padding: 0.1rem 0.2rem;
    }

    .help-section {
        margin-top: 1.5rem;
    }

    .left-content .section-sub-title {
        font-size: 1.1rem;
    }

    .right-content {
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .app-footer {
        padding: 0.5rem 0.75rem;
    }

    .web-title span {
        font-size: 1.1rem;
    }

    .link-footer span {
        font-size: 0.85rem;
    }

    .links-column a {
        font-size: 0.75rem;
    }

    .bottom-footer span {
        font-size: 0.75rem;
    }
}