:root {
    font-family: ui-serif, Georgia, -apple-system, "Inter UI", BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}

body {
    margin: 0;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1em 15%;
    position: relative;

    .app-info {
        display: flex;
        flex-direction: row;
        align-items: center;

        .logo {
            width: 48px;
            height: auto;
        }

        .title {
            font-size: 1.25em;
            font-weight: bold;
            margin-left: 0.75em;
        }
    }

    .app-btn {
        font-size: 0.9em;
        padding: 0 0.75em;
        color: white;
        background-color: #59A2FF;
        border-radius: 1em;
        text-decoration: none;
        display: flex;
        align-items: center;
        align-content: center;
    }

    .shadow {
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 8px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03), rgba(255, 255, 255, 0));
    }
}

button {
    outline: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5em 0;
}

.hero-page {
    min-height: 80vh;
    justify-content: center;
    padding: 0 15%;
}

h1 {
    font-size: 2.75em;
    font-weight: bold;
    margin-top: 2.5em;
    text-align: center;
    line-height: 125%;
}

.sub-hero {
    font-size: 1.2em;
    font-weight: 550;
    text-align: center;
    line-height: 125%;
}

.download-btn {
    text-decoration: none;
    padding: 1em 1.25em;
    background-color: #59A2FF;
    border-radius: 0.75em;
    margin-top: 4em;

    span {
        color: white;
        font-size: 1.2em;
    }
}

.subtitle {
    font-size: 0.85em;
    margin-top: 1.25em;
}

.demo-screenshot {
    margin-top: 3em;
    width: 95%;
    height: auto;
}

.appstore-page {
    min-height: 30vh;
}

.appstore-download-btn {
    img {
        height: 3em;
    }
}

.page-title {
    font-size: 1.25em;
    font-weight: bold;
}

.voiceover-page {
    padding: 1.5em;
    margin-top: 2.5em;
    background-color: #F4F6FC;
}

.feature-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0 15%;
    margin: 2.5em 0 2em 0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    margin: 0 1em;

    .feature-icon {
        width: 36px;
        height: 36px;
        border-radius: 18px;
        background-color: #59A2FF;
        display: flex;
        justify-content: center;
    }

    .feature-title {
        font-size: 1.1em;
        font-weight: bold;
        margin: 1.25em 0 0.75em 0;
        text-align: center;
        line-height: 150%;
    }

    .feature-desc {
        text-align: center;
        font-size: 1em;
        line-height: 150%;
    }
}

.script-page {
    padding: 1.5em;
    margin-top: 1em;
}

.script-content-container {
    display: flex;
    flex-direction: row;
    padding: 0 15%;
    margin-top: 2.5em;
    align-items: center;
    
    .script-screenshot {
        width: 70%;
        height: auto;
        margin-right: 1em;
    }
}

.faq-page {
    padding: 1.5em;
    margin-top: 2.5em;
    background-color: #FFF6EA;
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3em 15% 0 15%;
}

.faq-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3em;
}

.faq-q {
    display: flex;
    flex-direction: row;
    align-items: center;

    img {
        background-color: #59A2FF;
        width: 16px;
        height: 16px;
        padding: 6px;
        border-radius: 16px;
    }

    span {
        font-size: 1em;
        font-weight: bold;
        margin-left: 0.75em;
    }
}

.faq-a {
    font-size: 1em;
    line-height: 150%;
    margin-top: 1em;
}

footer {
    background-color: black;
    min-height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 15%;
}

.footer-block-item {
    display: flex;
    flex-direction: row;
    align-items: center;

    img {
        width: 56px;
        height: auto;
        margin-right: 1em;
    }

    span {
        font-size: 0.9em;
        color: rgba(255, 255, 255, 0.6);
    }
}