:root {
    --bg: #050809;
    --text: #f2f4f5;
    --muted: #a3aaae;
    --green: #00c34f;
    --blue: #079ce0;
    --yellow: #ffd600;
    --line: rgba(255,255,255,.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 4vw;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.95),
            rgba(0,0,0,.6),
            transparent
        );
}

.brand img {
    width: 160px;
}

.primary-nav {
    display: flex;
    gap: 34px;

    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.primary-nav a {
    color: #d0d4d6;
}

.primary-nav a:hover {
    color: #fff;
}


/* =========================================================
   SHARED IMAGE SECTIONS
   ========================================================= */

.section-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-image {
    width: 100%;
    height: auto;
}


/* =========================================================
   TEXT
   ========================================================= */

.eyebrow {
    margin-bottom: 14px;

    color: var(--yellow);

    font-size: .75rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    border: 1px solid rgba(255,255,255,.28);

    font-size: .75rem;
    font-weight: 700;

    letter-spacing: .05em;
    text-transform: uppercase;

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: #fff;
}

.button-primary {
    border-color: var(--green);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-content {
    position: absolute;

    top: 50%;
    left: 5%;

    transform: translateY(-42%);

    width: min(500px, 42vw);
}

.hero h1 {
    margin-bottom: 22px;

    font-size: clamp(2.7rem, 5vw, 5.3rem);

    line-height: .95;
    letter-spacing: -.04em;
}

.hero h1 span {
    background:
        linear-gradient(
            90deg,
            var(--green),
            var(--blue)
        );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
}

.hero-copy {
    margin-bottom: 28px;

    color: #c4c9cc;

    font-size: 1rem;
}


/* =========================================================
   FEATURED PRODUCT
   ========================================================= */

.featured-copy {
    position: absolute;

    top: 50%;
    right: 3%;
    left: auto;

    transform: translateY(-50%);

    width: 32%;
    max-width: 420px;

    padding: 1.5rem;

    text-align: right;
}

.featured-copy h2 {
    margin-bottom: 12px;

    font-size: clamp(2rem, 3.5vw, 3.6rem);

    line-height: 1;
}

.featured-copy p {
    color: #c0c5c8;
}

.product-lead {
    color: #fff !important;
    font-size: 1.15rem;
    font-weight: 700;
}

.button-row {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 28px;
}

.featured-copy .button-row {
    justify-content: flex-end;
}


/* =========================================================
   PRINCIPLES
   ========================================================= */

.principles-title {
    position: absolute;

    top: 5%;
    left: 3%;
}

.principle-grid {
    position: absolute;

    left: 7%;
    right: 7%;
    bottom: 28%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    text-align: center;
}

.principle-grid article {
    padding: 0 20px;
}

.principle-grid h3 {
    margin-bottom: 8px;

    font-size: .9rem;
}

.principle-grid p {
    margin-bottom: 0;

    color: #b8bec1;

    font-size: .84rem;
}


/* =========================================================
   MORE THAN PLUGINS
   ========================================================= */

.more-copy {
    position: absolute;

    top: 18%;
    left: 3%;

    width: 27%;
}

.more-copy h2 {
    margin-bottom: 18px;

    font-size: clamp(1.8rem, 3vw, 3rem);

    line-height: 1.05;
}

.more-copy p {
    color: #c1c6c9;
}

.records-copy {
    position: absolute;

    /* Position the block UNDER the baked-in logo */
    top: 26%;
    right: auto;
    left: 83%;

    width: 24%;
    max-width: 330px;

    text-align: left;
}

.records-copy p {
    text-align: left;
}

.records-copy .eyebrow {
    text-align: left;
}

.records-copy .button {
    display: flex;
    width: fit-content;
    margin: 18px auto 0;
}


/* =========================================================
   SUBSCRIBE
   ========================================================= */

.subscribe-copy {
    position: absolute;

    top: 50%;
    left: 9%;

    transform: translateY(-50%);
}

.subscribe-copy p {
    margin-bottom: 4px;

    color: #c1c6c9;
}

.subscribe-form {
    position: absolute;

    top: 50%;
    right: 6%;

    transform: translateY(-50%);

    display: flex;

    width: 48%;

    gap: 14px;
}

.subscribe-form input {
    flex: 1;

    min-width: 0;

    padding: 14px 18px;

    border: 1px solid var(--line);

    background: rgba(0,0,0,.5);

    color: #fff;
}

.subscribe-form button {
    min-width: 150px;

    border: 1px solid var(--green);

    background: rgba(0,0,0,.3);

    color: #fff;

    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 30px;

    padding: 45px 5%;

    border-top: 1px solid var(--line);
}

footer img {
    width: 105px;
}

footer p {
    margin-bottom: 0;

    color: var(--muted);

    font-size: .8rem;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0,0,0,0);

    white-space: nowrap;

    border: 0;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .primary-nav {
        display: none;
    }

    .hero .section-image {
        min-height: 680px;

        object-fit: cover;
        object-position: 62% center;

        opacity: .55;
    }

    .hero-content {
        left: 7%;

        width: 86%;
    }

    .featured-product {
        padding-bottom: 360px;
    }

    .featured-copy {
        top: auto;
        bottom: 40px;
        left: 7%;

        transform: none;

        width: 86%;
    }

    .principle-grid {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        grid-template-columns:
            1fr 1fr;

        gap: 35px;

        padding: 35px 6%;
    }

    .principles-title {
        position: relative;

        top: auto;
        left: auto;

        margin: 25px 6% 0;
    }

    .more {
        padding-bottom: 420px;
    }

    .more-copy,
    .records-copy {
        top: auto;
        left: 7%;

        width: 86%;
    }

    .more-copy {
        bottom: 210px;
    }

    .records-copy {
        bottom: 35px;
    }

    .subscribe {
        padding: 150px 7% 40px;
    }

    .subscribe-copy,
    .subscribe-form {
        position: static;

        width: 100%;

        transform: none;
    }

    .subscribe-form {
        margin-top: 25px;
    }

    footer {
        grid-template-columns: 1fr;
    }
}

.image-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}