* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #080b10;
    color: #bec7d5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.75;
}


/* NAVIGATION */

header {
    border-bottom: 1px solid #1d2633;
}

nav {
    max-width: 1050px;
    margin: auto;
    padding: 25px 25px;

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

.logo {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 3px;
    text-decoration: none;
}

.nav-links a {
    color: #8895a7;
    text-decoration: none;
    margin-left: 30px;
}

.nav-links a:hover {
    color: white;
}


/* MAIN */

main {
    max-width: 1050px;
    margin: auto;
    padding: 0 25px;
}


/* HERO */

.hero {
    min-height: 650px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
}

.hero h1 {
    color: white;
    font-size: 76px;
    line-height: 0.95;
    letter-spacing: -3px;

    margin: 15px 0 25px 0;
}

.hero-text {
    max-width: 650px;
    font-size: 19px;
    color: #929dac;
}

.eyebrow,
.section-label {
    color: #48a8ff;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
}


/* CONE */

.cone {
    position: absolute;

    right: 80px;
    top: 130px;

    width: 0;
    height: 0;

    border-left: 130px solid transparent;
    border-right: 130px solid transparent;
    border-bottom: 300px solid #14283d;

    opacity: 0.65;

    transform: rotate(12deg);

    z-index: -1;
}


/* BUTTON */

.button {
    display: inline-block;
    width: fit-content;

    margin-top: 25px;
    padding: 13px 20px;

    background: #1689ef;
    color: white;

    text-decoration: none;
    border-radius: 5px;

    font-weight: bold;
}

.button:hover {
    background: #3aa2ff;
}


/* SECTIONS */

.section {
    padding: 100px 0;
    border-top: 1px solid #1d2633;
}

.section > h2 {
    color: white;
    font-size: 42px;
}

.section > p {
    max-width: 700px;
}


/* ARTICLE CARD */

.article-card {
    max-width: 750px;

    background: #0d121a;

    border: 1px solid #1d2633;

    padding: 35px;

    margin-top: 35px;

    border-radius: 8px;
}

.article-card h2 {
    font-size: 30px;
    line-height: 1.3;
}

.article-card h2 a {
    color: white;
    text-decoration: none;
}

.article-card h2 a:hover {
    color: #48a8ff;
}

.article-date {
    color: #657387;

    font-size: 12px;

    letter-spacing: 2px;
}

.read-more {
    display: inline-block;

    margin-top: 15px;

    color: #48a8ff;

    text-decoration: none;

    font-weight: bold;
}


/* BLOG */

.blog-post {
    max-width: 750px;

    margin: auto;

    padding: 100px 0;
}

.blog-post h1 {
    color: white;

    font-size: 55px;

    line-height: 1.1;

    letter-spacing: -2px;
}

.blog-post h2 {
    color: white;

    font-size: 29px;

    margin-top: 55px;
}

.blog-post p {
    font-size: 18px;
}

.lead {
    color: #d9e0e8;

    font-size: 23px !important;
}

.back {
    display: inline-block;

    color: #657387;

    text-decoration: none;

    margin-bottom: 60px;

    font-size: 12px;

    letter-spacing: 2px;
}


/* QUOTE */

.quote {
    margin: 50px 0;

    border-left: 3px solid #48a8ff;

    padding: 10px 30px;

    color: white;

    font-style: italic;
}


/* END */

.end {
    margin-top: 70px;

    padding-top: 30px;

    border-top: 1px solid #1d2633;
}

.end a {
    color: #48a8ff;

    text-decoration: none;
}


/* FOOTER */

footer {
    border-top: 1px solid #1d2633;

    text-align: center;

    color: #596679;

    padding: 50px 20px;

    font-size: 12px;

    letter-spacing: 1px;
}


/* MOBILE */

@media (max-width: 700px) {

    .hero h1 {
        font-size: 52px;
    }

    .blog-post h1 {
        font-size: 42px;
    }

    .cone {
        opacity: 0.25;
        right: 20px;
    }

    .nav-links a {
        margin-left: 15px;
    }
}
