/* ==== CSS Reset: https://www.joshwcomeau.com/css/custom-css-reset/ ==== */

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

body {
    /* 3. Add accessible line-height */
    line-height: 1.5;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
    font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
    text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root,
#__next {
    isolation: isolate;
}

/* ==== Begin global styles ==== */

@font-face {
    font-family: "SN Pro";
    src: url("assets/SNPro/SNPro-VariableRegular.woff2")
        format("woff2-variations");
    font-weight: 200 900;
    font-style: normal;
}
@font-face {
    font-family: "SN Pro";
    src: url("assets/SNPro/SNPro-VariableItalic.woff2")
        format("woff2-variations");
    font-weight: 200 900;
    font-style: italic;
}

/* ==== Begin desktop styles ==== */

body,
html {
    background: #060913;
    color: #dfe7e6;
    font-family: "SN Pro", BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 400;
}

em {
    font-family: "SN Pro", BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    /* font-style: italic; */
}

p {
    font-size: 18px;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

a {
    color: #f9b934;
    text-decoration: none;
}
a:hover,
a:active {
    text-decoration: underline;
}
a:visited {
    color: #f9b934;
}

input,
button {
    font: inherit;
}

input[type="email"] {
    color: #ddd;
    background: #0d1327;
    border: 1px solid #373a42;
    border-radius: 8px;
    padding: 4px 8px;

    margin-right: 10px;
    transition: border 250ms;
}
input[type="email"]:focus,
input[type="email"]:active {
    border: 1px solid #7c59c5;
    outline: none;
}

button {
    color: #ddd;
    background: #060913;
    border: 1px solid #373a42;
    border-radius: 20px;
    padding: 4px 16px;

    transition:
        border 250ms,
        box-shadow 500ms;
}
button:hover,
button:focus,
button:active {
    outline: none;
    border: 1px solid #7c59c5;
    box-shadow: 0 0 10px 2px #7c59c5;
}

.container {
    margin: 0 auto;
    max-width: 900px;
    padding: 20px;
}

header {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

header h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

header h2 {
    font-size: 60px;
    font-weight: 400;
    line-height: 58px;
}

header .description {
    margin-top: 40px;
    color: #eeeeee;
}

header .description ul {
    margin-bottom: 20px;
}

header .description p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 20px;
    margin-bottom: 20px;
}

header .description p:last-of-type {
    margin-bottom: 0;
}

header .description p.code-included {
    color: #a1a58d;
}

header .description p.early-access {
    margin-top: 20px;
    opacity: 0.7;
    font-size: 18px;
}

.cta {
    background: #111936;
    border: 1px solid #282f4a;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px 10px #000000;
}

.features {
    padding: 20px;
}

.features h3 {
    padding-top: 30px;
    padding-bottom: 10px;
    font-size: 25px;
    font-weight: 400;
}

.features h3:first-of-type {
    padding-top: 10px;
}

ul.feature-list {
    list-style: none;
    text-align: justify;
    padding: 0;
    /* hyphens: auto;
    -webkit-hyphens: auto; */
    font-size: 0;
}
ul.feature-list li {
    display: inline;
    font-size: 18px;
}
ul.feature-list li:nth-of-type(odd) {
    font-weight: 700;
}
ul.feature-list li:before {
    content: "•";
    font-weight: 400 !important;
    display: inline;
    margin: 0 10px;
}
ul.feature-list li:first-child:before {
    display: none;
}

.privacy p {
    margin-bottom: 8px;
}

footer {
    font-family: monospace;
    text-align: center;
    padding: 60px 20px 40px 20px;
}
footer p {
    font-size: 15px;
    padding-bottom: 10px;
    color: #aaaaaa;
}
footer p.links {
    opacity: 1;
}

/* ==== Begin mobile styles ==== */

@media only screen and (max-width: 450px) {
    header {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    header h2 {
        font-size: 50px;
    }
    header .description {
        margin-top: 30px;
    }
    main .cta button {
        margin-top: 20px;
    }
}
