:root {
    --gray: rgba(33, 33, 33, 1);
    --dark-gray: rgba(18, 18, 18, 1);
    --light-gray: rgba(66, 66, 66, 1);
    --very-light-gray: rgba(99, 99, 99, 1);
    --purple: rgba(133, 66, 176, 1);
    --dark-purple: rgba(107, 28, 153, 1);
    --light-purple: rgba(156, 77, 204, 1);
    --light-purple-text-selection: rgba(156, 77, 204, 0.5);
    --very-light-purple: rgb(184, 115, 250);
    --yellow: rgba(255, 210, 0, 1);
    --light-yellow: rgba(255, 237, 154, 1);
    --error: rgba(255, 76, 76, 1);
    --modal-overlay: rgba(0, 0, 0, 0.2);
    --text: rgba(255, 255, 255, 0.95);
    --text-transparent: rgba(255, 255, 255, 0.75);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    position: relative;
    font-weight: 400;
}
body {
    min-height: 100px;
    color: var(--text);
    background-color: var(--dark-gray);
    line-height: 1.5;
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 16px;
    text-align: center;
    text-rendering: optimizeLegibility;
    width: 100%;
    height: 100%;
}
img {
    height: auto;
    max-width: 100%;
}
img.thumbnail, .docsImg {
    aspect-ratio: 16 / 9;
    border: 4px solid var(--purple);
    border-radius: 4px;
    cursor: pointer;
    max-height: 540px;
    width: 960px;
}
img.mitchPhoto {
    aspect-ratio: 9 / 16;
    border: 4px solid var(--light-gray);
    border-radius: 4px;
    max-height: 800px;
    width: 450px;
}
a {
    color: var(--text);
    text-decoration: none;
}
strong {
    font-weight: 800;
}
.icon-s24 {
    height: 24px;
    width: 24px;
    max-height: 24px;
    max-width: 24px;
    min-height: 24px;
    min-width: 24px;
}
.icon-s36 {
    height: 36px;
    width: 36px;
    max-height: 36px;
    max-width: 36px;
    min-height: 36px;
    min-width: 36px;
}
.icon-s48 {
    height: 48px;
    width: 48px;
    max-height: 48px;
    max-width: 48px;
    min-height: 48px;
    min-width: 48px;
}
.icon-purple {
    color: var(--light-purple);
}
.icon-yellow {
    color: var(--yellow);
}
.icon-red {
    color: var(--error);
}
.text-s16-w800 {
    font-size: 16px;
    font-weight: 800;
}
.text-s20-w800 {
    font-size: 20px;
    font-weight: 800;
}
.text-s24-w800 {
    font-size: 24px;
    font-weight: 800;
}
.text-s36-w800 {
    font-size: 36px;
    font-weight: 800;
}
.text-s64-w800 {
    font-size: 64px;
    font-weight: 800;
}
.text-s16-w400 {
    font-size: 16px;
    font-weight: 400;
}
.text-s20-w400 {
    font-size: 20px;
    font-weight: 400;
}
.text-s24-w400 {
    font-size: 24px;
    font-weight: 400;
}
.text-s36-w400 {
    font-size: 36px;
    font-weight: 400;
}
.text-s64-w400 {
    font-size: 64px;
    font-weight: 400;
}
.text-transparent {
    color: var(--text-transparent);
}
.navBar {
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: #21212188;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    max-height: 62px;
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 1;
}
.navButtonsContainer {
    align-items: center;
    display: flex;
    gap: 48px;
}
.navBarMobile {
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: #21212188;
    border-bottom: 2px solid var(--light-gray);
    justify-content: space-between;
    max-height: 62px;
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 1;
}
.navMobileTray {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.navMobileButtonsContainer {
    align-items: center;
    background-color: var(--dark-gray);
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 8px;
    padding: 16px;
    position: absolute;
    right: 16px;
    top: 100%;
    z-index: 1000;
}
.smallButton {
    align-items: center;
    background-color: var(--purple);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    gap: 4px;
    justify-content: center;
    padding: 4px;
}
.mediumButton {
    align-items: center;
    background-color: var(--purple);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    gap: 4px;
    justify-content: center;
    padding: 16px;
}
.largeButton {
    align-items: center;
    background-color: var(--purple);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    gap: 4px;
    justify-content: center;
    padding: 24px;
}
.sectionContainer {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 64px;
    justify-content: space-evenly;
    padding: 64px;
}
.section {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-evenly;
    width: 100%;
}
.column {
    flex-direction: column;
}
.textCallout {
    text-align: center;
}
.gray {
    background-color: var(--gray);
}
.featureDivider {
    background-color: var(--light-gray);
    height: 4px;
    max-width: 50%;
    min-height: 4px;
    width: 1024px;
}
.pricingContainer {
    align-items: center;
    background-color: var(--dark-gray);
    border: 4px solid var(--light-gray);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 384px;
    min-width: 384px;
    padding: 40px;
    text-align: center;
}
.pricingDivider {
    background-color: var(--light-gray);
    height: 2px;
    max-width: 80%;
    width: 80%;
}
.faqsQuestion {
    cursor: pointer;
    display: flex;
    gap: 8px;
    justify-content: center;
    transition: 0.4s;
}
.faqsAnswer {
    background-color: var(--gray);
    max-height: 0;
    max-width: 768px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.faqsAnswerContent {
    border: 4px solid var(--light-gray);
    border-radius: 4px;
    padding: 16px;
    text-align: left;
}
.imageModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding: 32px 0px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
.modalImage {
    border: 4px solid var(--purple);
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: auto;
    width: 95%;
}
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-transparent);
    padding: 16px 0;
}
.modal, .modalImage, #caption {  
    animation-name: fadeIn;
    animation-duration: 0.2s;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--modal-overlay);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    object-fit: contain;
}

.close {
    color: var(--text);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: var(--purple);
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

#features, #getStarted, #pricing {
    scroll-margin-top: 100px;
}

#msOverlay * {
    color: var(--text) !important;
    background-color: var(--gray) !important;
    border-radius: 4px !important;
}
.ms-modal {
    border: 2px solid var(--light-gray) !important;
}
#msOverlay .ms-modal__content {
    border-top: 1px solid var(--light-gray) !important;
    border-radius: 0px !important;
}
#msOverlay .ms-modal__content-left {
    border-right: 1px solid var(--light-gray) !important;
    border-radius: 0px !important;
}
.ms-form__input, .ms-modal__outline-button, .ms-modal__profile-image {
    border: 1px solid var(--light-gray) !important;
}
.ms-modal__close {
    top: 1px !important;
}
#msOverlay .ms-form__error {
    color: var(--error) !important;
}
#msOverlay .ms-form__input, .ms-form__password-container {
    border: 1px solid var(--light-gray) !important;
}
#msOverlay .ms-form__input--password {
    border: 0px !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .modalImage {
        width: 100%;
    }
    .navBar {
        display: none;
    }
    .navBarMobile {
        display: block;
    }
    .sectionContainer {
        padding: 32px;
    }
    .text-s64-w400, .text-s64-w800 {
        font-size: 36px;
    }
    .pricingContainer {
        min-width: 280px;
        max-width: 100%;
        padding: 24px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .modalImage {
        width: 100%;
    }
    .navBar {
        display: none;
    }
    .navBarMobile {
        display: block;
    }
    .sectionContainer {
        padding: 32px;
    }
    .text-s64-w400, .text-s64-w800 {
        font-size: 36px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .navBar {
        display: none;
    }
    .navBarMobile {
        display: block;
    }
    .text-s64-w400, .text-s64-w800 {
        font-size: 64px;
    }
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .navBar {
        display: flex;
    }
    .navBarMobile {
        display: none;
    }
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .modalImage {
        width: 95%;
    }
    .navBar {
        display: flex;
    }
    .navBarMobile {
        display: none;
    }
    .section:not(.column) {
        flex-direction: row;
    }
    .sectionContainer {
        padding: 64px;
    }
}



/* Keyframes for moving the element up and down */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px); /* Move up by 16px */
    }
    100% {
        transform: translateY(0); /* Move back to original position */
    }
}

/* Apply the bounce animation to the element */
.bounceAnimation {
    animation: bounce 1.5s ease-in-out infinite; /* Duration: 1s, Infinite loop */
}

.nav-link {
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--light-purple);
}

h1[data-scroll] {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

h1[data-scroll]:hover {
    background-color: var(--light-purple);
}