
:root {

    --blue-1: #007FFF;
    --green-1: #18C956;
    --orange-1: #FFB140;
    --navy-1: #682D63;

}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    position: relative;

    line-height: 1.4;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

header {

    position: sticky;
    top: 0;

    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px;
    background-color: #FFF;

    border-bottom: 2px solid #EEE;
    flex-flow: row wrap;

    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);

}

header a {
    display: inline-block;
    margin: 5px 15px;
    text-decoration: none;
    color: black;
}

header img.logo {
    max-height: 70px;
}

a.right.big {
    padding: 10px;
    border-radius: 5px;

    color: white;
    background-color: var(--blue-1);
}

div.logo img {
    max-height: 40px;
}

div.cta.dont-just-read {
    padding: 1em;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-flow: column nowrap;

    min-height: 70vh;

    background-color: #000000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800'%3E%3Cg %3E%3Ccircle fill='%23000000' cx='400' cy='400' r='600'/%3E%3Ccircle fill='%23180d1c' cx='400' cy='400' r='500'/%3E%3Ccircle fill='%23261431' cx='400' cy='400' r='400'/%3E%3Ccircle fill='%23351947' cx='400' cy='400' r='300'/%3E%3Ccircle fill='%23451e5e' cx='400' cy='400' r='200'/%3E%3Ccircle fill='%23552277' cx='400' cy='400' r='100'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;

    width: 100%;
    /* box-shadow: 10px 10px 79px -24px rgba(0,0,0,0.75); */
}

div.cta.dont-just-read .big-text {

    font-size: 5rem;
    color: white;
    font-weight: bolder;

    margin: 0;

    text-align: center;

}

div.cta.dont-just-read .big-text .learn {

    font-size: 10rem;
    display: block;

    margin-top: -0.3em;

    color: var(--orange-1);

    /* background: linear-gradient(to right, #ee0979, #ff6a00); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;   */

}

div.cta.dont-just-read .download-btns {
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    margin-top: 20px;
}

.section {

    display: grid;
    grid-template-columns: 0.5fr 1fr;
    padding: 3em;
    margin: 2em 0;

    grid-column-gap: 20px;

}

.section .intro h1 {
    font-size: 3.5rem;
    font-weight: bolder;
    margin: 0;
    line-height: 1;
}

.emphasis {
    text-decoration: none;
}

a.emphasis {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-style: dotted;
}

a.emphasis:hover {
    text-decoration: none;
}

.emphasis.blue {
    color: var(--blue-1);
}

.emphasis.green {
    color: var(--green-1);
}

.emphasis.orange {
    color: var(--orange-1);
}

.emphasis.navy {
    color: var(--navy-1);
}

.section.right {
    grid-template-columns: 1fr 0.5fr;
}

.section p {
    font-size: 1.2rem;
    margin: 20px;
}

.section h2 {
    font-size: 1.8rem;
    margin: 20px;
}

.section img, .section video {
    max-width: 100%;
    border-radius: 5px;
    margin: 20px;
}

section div.right { text-align: right; }

.downloads {
    background-color: #FAFAFA;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-flow:  column nowrap;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);

    text-align: center;

    padding: 2rem;

}

.downloads h2 {
    font-size: 3rem;
    margin: 0;
}

.inline-img {
    max-height: 1em;
}

.downloads .download-btns {

    display: flex;
    align-items: center;
    justify-content: space-evenly;

}

.downloads .download-btns a {

    padding: 10px 15px;
    border-radius: 5px;
    color: white;

    vertical-align: middle;
    margin: 7px 15px;

}

.downloads .download-btns a.mac {
    background-color: black;
}

.downloads .download-btns a img {
    height: 1.2em;
    margin-right: 10px;
}

.downloads .download-btns a.mac img {
    filter: invert(1);
}

.downloads .download-btns a.win {
    background-color: white;
    color: black;
    border: 2px solid #EEE;
}

@media screen and (max-width: 768px) {

    div.cta.dont-just-read .big-text {
        font-size: 3rem;
    }

    div.cta.dont-just-read .big-text .learn {
        font-size: 7rem
    }

    @media screen and (max-width: 768px) {
        .section, .section.right {
            flex-flow: column;
        }

        .section img, .section video {
            max-width: 90%;
        }
    }

    header {
        justify-content: center;
    }

    
}

footer {
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-flow: row wrap;
    color: gray;
    background-color: #FAFAFA;
    border-top: 2px dashed #EEE;
}

.plans-section {
    border-top: 2px solid #EEE;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-flow: column nowrap;
    margin: 25px 0;

    margin-top: 100px;
}

.plans-section h2 {
    font-size: 3rem;
}

.plans-section .plans {

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    flex-flow: row wrap;
    min-width: 50vw;

}

.plans > div {
    max-width: 300px;

    border: 2px solid #EEE;
    padding: 30px 20px;
    margin: 20px;

    border-radius: 5px;

    /* display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column nowrap; */

}

.plans > div h3 {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    margin: 0;
}

.plans > div ul li {
    margin: 10px 0;
}

.plans > div a.cta {

    padding: 10px 15px;

    border-radius: 5px;

    color: white;

}

.plans > div a.cta {
    background-color: #FF5154;
}

.plans > div a.cta.pro {
    background-color: #F51AA4;
    font-size: 0.8rem;
}

.plans > div.pro {
    transform: scale(1.07);

    border:5px solid transparent;
    border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
    border-image-slice: 1;

    transition: 0.2s ease-in-out;
    box-sizing: content-box;
}

.plans div.btnholder {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
    margin-bottom: 20px;
}

div.price {
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 15px;
    border-radius: 3px;
    border: 2px dashed #EEE;

    flex-flow: column nowrap;
}

div.price div.sml {
    font-size: 0.8rem;
}

.intro .subtitle {
    font-size: 1.3rem;
    color: rgb(86, 86, 86);
    margin: 0;
    margin-top: 15px;
}

div.details {
    position: relative;
}

img.many-cards {
    position: absolute;
    left: -15%;
    transform: scale(1.2);
}