body {
    --olympus-bg: #0C100E;
    --olympus-surface: #141916;
    --olympus-surface-inset: #090E0B;
    --olympus-border: #2B332F;
    --olympus-border-muted: #38413C;
    --olympus-text-muted: #9DA8A2;
    --olympus-divider: rgba(0, 255, 176, 0.1);
    --olympus-ui-surface: rgba(0, 255, 176, 0.08);
    --olympus-ui-surface-hover: rgba(0, 255, 176, 0.12);
    --olympus-ui-border: rgba(0, 255, 176, 0.16);
    --olympus-button-bg: var(--olympus-surface);
    --olympus-button-bg-hover: #1A201C;
    --olympus-button-border: rgba(0, 255, 176, 0.38);
    --olympus-button-font-size: 12px;
    --olympus-button-line-height: 16px;
    --olympus-button-padding-y: 8px;
    --olympus-button-padding-x: 12px;
    --olympus-button-gap: 8px;
    --olympus-button-icon-size: 12px;
    --olympus-badge-surface: rgba(0, 255, 176, 0.12);
    --olympus-badge-border: rgba(0, 255, 176, 0.36);
    --olympus-badge-text: #D2DDD7;
    --section-content-gap: 56px;
    --section-intro-gap: 32px;
    --section-intro-stack-gap: 8px;
    --section-text-width: 65ch;
    --page-gutter: 20px;
    background-color: var(--olympus-bg);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin: 0 auto;
}



/*-----------GENERAL TEXT-----------*/










h1,
h2,
h3,
h4 {
    font-family: 'Big Shoulders', sans-serif;
}

h1,
h2,
h3,
li {
    font-weight: 600;
}

h4 {
    font-weight: normal;
}





h1 {
    font-size: 24px;
    line-height: 32px;
    color: white;
    margin-bottom: 0;
}

h2 {
    color: white;
    font-size: 20px;
    line-height: 24px;
}

h3 {
    color: white;
    font-size: 20px;
    line-height: 24px;
}

h4 {
    color: var(--olympus-text-muted);
    font-size: 16px;
    line-height: 24px;
}

p {
    font-size: 16px;
    color: var(--olympus-text-muted);
    line-height: 24px;
}

a:not(.home-nav_back):not(.home-nav_logo):not(.faces_grid_button):not(.site_footer_logo) {
    font-size: 16px;
    line-height: 24px;
    color: #008EFF;
    text-decoration: none;
}

a:not(.home-nav_back):not(.home-nav_logo):not(.faces_grid_button):not(.site_footer_logo):hover {
    color: skyblue;
    text-decoration: none;
}


strong,
b {
    font-family: 'Big Shoulders', sans-serif;
}


ul {
    line-height: 24px;
    padding-left: 0;
}

ul li {

    list-style: none;
    font-weight: normal;
    font-size: 16px;
}

ul a{
    line-height: 24px;
}


.brandmark {
    font-family: 'Big Shoulders', sans-serif;
    font-weight: 800;
    letter-spacing: 12px;
    font-size: 16px;
    color: white;
    width: 100%;
    text-align: left;
}









/*----------------------CONTAINERS----------------------*/

.page-container {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-gutter, 20px);
    padding-right: var(--page-gutter, 20px);
    box-sizing: border-box;
}

main {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.about {
    margin-bottom: var(--section-content-gap);
}

.about_highlights,
.faces_grid,
.kit_grid {
    margin-top: var(--section-intro-gap);
}

.about_highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about_card {
    padding: 20px;
    border: 1px solid var(--olympus-border-muted);
    border-radius: 8px;
    background-color: var(--olympus-surface);
}

.about_card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
}

.about_card p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: var(--olympus-text-muted);
}

.kit, .support {
    margin-bottom: 0;
}

.section_heading {
    margin: 0 0 var(--section-intro-stack-gap);
    max-width: var(--section-text-width);
    font-family: 'Big Shoulders', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #fff;
}

.section_lead {
    margin: 0;
    max-width: var(--section-text-width);
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--olympus-text-muted);
}

.kit_download > .faces_grid_button {
    width: fit-content;
    max-width: 100%;
    margin-top: 16px;
    flex: none;
}

/*-----------NAV-----------*/

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--olympus-bg);
}

.home-nav_inner,
nav .page-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 12px;
}

nav > a {
    text-decoration: none;
}

.home-nav_brand {
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-nav_logo {
    text-decoration: none;
}

.home-nav_logo:hover .site_footer_brandmark {
    color: #fff;
}

.home-nav_logo .site_footer_brandmark {
    width: auto;
}

.home-nav_back {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin: -12px -8px -12px -12px;
    color: #fff;
    text-decoration: none;
}

.home-nav_back:hover,
.home-nav_back:focus-visible {
    color: #fff;
}

.home-nav_back:focus-visible {
    outline: 2px solid rgba(0, 255, 176, 0.5);
    outline-offset: 0;
    border-radius: 4px;
}

.home-nav_back .olympus-icon--nav {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
}

.nav_links {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav_links p {
    display: block;
    margin-right: 16px;
    margin-bottom: 0;
    margin-top: 0;
}

.nav_links p:last-child {
    margin-right: 0;
}

.nav_links p,
.nav_links a {
    font-size: 16px;
    line-height: 24px;
}

.nav_links a {
    color: var(--olympus-text-muted);
}

.nav_links a:hover {
    color: #fff;
}


/*-----------MAIN-----------*/


































/*-----------LANDING PAGE-----------*/


.landing {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 80px;
    grid-row-gap: 0;
    align-items: center;
}

.landing h4 {
    margin: 0;
}

.landing_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.landing_audience {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.landing_badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.landing_badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--olympus-badge-text);
    background-color: var(--olympus-badge-surface);
    border: 1px solid var(--olympus-badge-border);
    border-radius: 999px;
    white-space: nowrap;
}

.landing_rnib {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--olympus-border-muted);
}

.landing_rnib_icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

.landing_rnib_copy {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.landing_rnib_text {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: var(--olympus-text-muted);
}

.landing_rnib_info_wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.landing_rnib_info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    color: var(--olympus-text-muted);
    cursor: pointer;
}

.landing_rnib_info .olympus-icon--button {
    font-size: 16px;
}

.landing_rnib_info_wrap:hover .landing_rnib_info,
.landing_rnib_info_wrap:focus-within .landing_rnib_info {
    color: #fff;
}

.landing_rnib_popover {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 300;
    width: min(300px, calc(100vw - 48px));
    padding: 12px 16px;
    border: 1px solid var(--olympus-border-muted);
    border-radius: 12px;
    background-color: var(--olympus-surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

.landing_rnib_popover::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 12px;
    height: 12px;
    background-color: var(--olympus-surface);
    border-right: 1px solid var(--olympus-border-muted);
    border-bottom: 1px solid var(--olympus-border-muted);
    border-bottom-right-radius: 4px;
    transform: translateX(-50%) rotate(45deg);
}

.landing_rnib_info_wrap:hover .landing_rnib_popover,
.landing_rnib_info_wrap:focus-within .landing_rnib_popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.landing_rnib_popover p {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: var(--olympus-text-muted);
}

.landing ul li {
    line-height: 24px;
    font-size: 16px;
    color: white;
    list-style: disc;
}


/*-----------HOME PAGE VIEWPORT FIT-----------*/

body.home-page {
    --hero-bg: #030806;
    --hero-bg-mid: #06110C;
    --hero-glow: #00FFB0;
    --hero-green-fade: 140px;
    --section-bg: var(--olympus-bg);
    --section-surface: var(--olympus-surface);
    --section-surface-inset: var(--olympus-surface-inset);
    --section-border: var(--olympus-border);
    --section-border-muted: var(--olympus-border-muted);
    --section-content-gap: 64px;
    --home-nav-offset: 56px;
    min-height: 100dvh;
    overflow-x: hidden;
    margin: 0;
    scroll-behavior: smooth;
    background-color: var(--section-bg);
}

.home-page main {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.home-page .home-header {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    display: block;
    box-sizing: border-box;
    padding: var(--home-nav-offset) 0 80px;
    background:
        linear-gradient(to top, rgba(0, 80, 48, 0.35) 0px, transparent var(--hero-green-fade)),
        linear-gradient(180deg, var(--hero-bg) 0%, var(--hero-bg-mid) 100%);
    position: relative;
    isolation: isolate;
}

.home-page .home-header::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--hero-green-fade);
    z-index: 3;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent 0,
            transparent 31px,
            rgba(0, 255, 176, 0.14) 31px,
            rgba(0, 255, 176, 0.14) 32px
        ),
        linear-gradient(to top, rgba(0, 80, 48, 0.35) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(
        to top,
        #000 0%,
        rgba(0, 0, 0, 0.55) 45%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to top,
        #000 0%,
        rgba(0, 0, 0, 0.55) 45%,
        transparent 100%
    );
}

.home-page .home-header > .page-container {
    position: relative;
    z-index: 2;
}

.home-page .home-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    z-index: 4;
    background: rgba(0, 255, 176, 0.28);
    box-shadow:
        0 0 8px rgba(0, 255, 176, 0.2),
        0 0 20px rgba(0, 255, 176, 0.1);
    pointer-events: none;
}

.home-page .landing {
    flex: 0 0 auto;
    min-height: 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    column-gap: 48px;
    padding: 0;
    text-align: left;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.home-page .landing_text {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 4;
}

.home-page .landing_image_watch {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 0;
    overflow: visible;
    margin-bottom: -32px;
}

.home-page #landing_image_watch {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: center bottom;
}

.home-page .home-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--hero-bg);
    border-bottom: 1px solid rgba(0, 255, 176, 0.12);
}

.home-page .home-nav_inner {
    padding-top: 16px;
    padding-bottom: 12px;
}

.home-page .landing_text {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.home-page .landing h1,
.home-page .landing_audience,
.home-page .landing_rnib,
.home-page .landing_rnib_copy {
    max-width: 680px;
}

.home-page .landing h1 {
    font-size: 36px;
    line-height: 44px;
    margin: 0;
    text-align: left;
    font-weight: 800;
    text-transform: uppercase;
}

.home-page .landing h4 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: var(--olympus-text-muted);
}

.home-page .landing_badges {
    justify-content: flex-start;
}

.home-page .about {
    flex-shrink: 0;
    margin-top: 0;
    padding-top: var(--section-intro-gap);
}

.home-page .faces {
    flex-shrink: 0;
    margin-top: 0;
    padding-top: 0;
}

.home-page .faces_grid {
    flex-shrink: 0;
    margin-bottom: var(--section-content-gap);
}

.home-page .kit {
    padding-top: 0;
}

.home-page #about,
.home-page #watch-faces,
.home-page #mockup-kit {
    scroll-margin-top: var(--home-nav-offset);
}

/*-----------HOME PAGE SECTIONS-----------*/

.home-page .faces_grid_item h2,
.home-page .kit_card h3,
.home-page .about_card h3 {
    color: #fff;
}

.home-page .section_lead,
.home-page .faces_grid_item p,
.home-page .kit_card p,
.home-page .about_card p {
    color: var(--olympus-text-muted);
}

.home-page .about_card {
    background-color: var(--section-surface);
    border-color: var(--section-border);
}

.home-page .kit_card {
    background-color: var(--section-surface);
    border-color: var(--section-border);
}

.home-page .kit_card_media {
    background-color: var(--section-surface-inset);
}

.home-page .site_footer {
    background-color: var(--section-bg);
    border-top: 1px solid var(--olympus-divider);
}

.home-page .site_footer_brandmark {
    color: #fff;
}

.home-page .site_footer_logo:hover .site_footer_brandmark {
    color: #fff;
}

.home-page .site_footer_copyright {
    color: #6B7570;
}





































/*-----------CREATORS TOOLKIT-----------*/


.kit {
    text-align: left;
}

.kit_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 20px;
    align-items: stretch;
}

.kit_card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    height: 100%;
    padding: 0;
    border: 1px solid var(--olympus-border-muted);
    border-radius: 8px;
    background-color: var(--olympus-surface);
    box-sizing: border-box;
    overflow: hidden;
}

.kit_card_content {
    padding: 16px 20px 20px;
    flex: 1 1 auto;
}

.kit_card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
}

.kit_card p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: var(--olympus-text-muted);
}

.kit_card_content p + p {
    margin-top: 8px;
}

.kit_card_media {
    width: 100%;
    height: 240px;
    flex-shrink: 0;
    background-color: var(--section-surface-inset);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kit_card_image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.kit_grid_3 .kit_card_media {
    padding: 24px;
    box-sizing: border-box;
}

.kit_grid_3 .kit_card_image {
    max-width: 100%;
    max-height: 100%;
}

.kit_card_icon {
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: 100px;
    max-height: 100px;
}

.kit_card_media_icons {
    gap: 40px;
}

.renders_gallery {
    margin-top: var(--section-content-gap);
}

.renders_gallery_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: var(--section-intro-gap);
}

.renders_gallery_item {
    margin: 0;
    border: 1px solid var(--olympus-border-muted);
    border-radius: 8px;
    background-color: var(--section-surface-inset);
    overflow: hidden;
}

.renders_gallery_item--featured {
    grid-column: 1 / -1;
}

.renders_gallery_item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}

.home-page .renders_gallery_item {
    border-color: var(--section-border);
    background-color: var(--section-surface-inset);
}

/*-----------WATCH FACES-----------*/














.faces_grid {
    --faces-column-gap: 32px;
    --faces-media-max: 168px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: var(--faces-column-gap);
    row-gap: 32px;
    align-items: stretch;
    width: 100%;
}

.faces_grid_item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    min-height: 100%;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.faces_grid_media {
    width: min(100%, var(--faces-media-max));
    margin-inline: auto;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.faces_grid_content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
}

.faces_grid_item h2 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 24px;
}

.faces_grid_item p {
    margin-top: 0;
    flex: 1 1 auto;
    margin-bottom: 0;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
    min-width: 0;
}

.faces_grid_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--olympus-button-gap);
    box-sizing: border-box;
    white-space: nowrap;
    background-color: var(--olympus-button-bg);
    color: #fff;
    padding: var(--olympus-button-padding-y) var(--olympus-button-padding-x);
    border-radius: 999px;
    font-family: 'Noto Sans', sans-serif;
    font-size: var(--olympus-button-font-size);
    font-weight: 600;
    line-height: var(--olympus-button-line-height);
    border: 1px solid var(--olympus-button-border);
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
}

.faces_grid_button {
    flex: 0 0 auto;
    width: 100%;
    margin-top: auto;
}

.faces_grid img,
.faces_grid_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    border: 1px solid var(--olympus-ui-border);
    border-radius: 50%;
    box-sizing: border-box;
    outline: none;
    box-shadow: none;
    background: transparent;
    display: block;
}

.faces_grid_button:hover {
    background-color: var(--olympus-button-bg-hover);
    border-color: rgba(0, 255, 176, 0.5);
    color: #fff;
    text-decoration: none;
}

.faces_grid_button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.faces_grid_button:disabled:hover {
    background-color: var(--olympus-button-bg);
    border-color: var(--olympus-button-border);
    color: #fff;
}

/*-----------FOOTER-----------*/

.site_footer {
    width: 100%;
    margin-top: var(--section-content-gap);
    padding: 32px 0 40px;
    box-sizing: border-box;
    background-color: var(--olympus-bg);
    border-top: 1px solid var(--olympus-divider);
}

.site_footer_inner {
    text-align: left;
}

.site_footer_logo {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.site_footer_logo:hover .site_footer_brandmark {
    color: #fff;
}

.site_footer_brandmark {
    margin: 0;
    font-size: 16px;
    letter-spacing: 12px;
    line-height: 24px;
    color: #fff;
}

.site_footer_copyright {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: #6B7570;
}

.material-symbols-outlined.olympus-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    flex-shrink: 0;
}

.faces_grid_button .olympus-icon--button,
.faces_grid_button .olympus-btn-icon,
.olympus-icon--button {
    font-size: var(--olympus-button-icon-size);
    line-height: 1;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.olympus-icon--nav {
    font-size: 16px;
}

.material-symbols-outlined.olympus-btn-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    flex-shrink: 0;
}



























/*-----------RESPONSIVE-----------*/

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

    .faces_grid {
        --faces-column-gap: 24px;
        row-gap: 24px;
    }

    .kit_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kit_grid_tools {
        grid-column: 1 / -1;
    }

    .about_highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about_highlights .about_card:last-child {
        grid-column: 1 / -1;
    }

    .renders_gallery_grid {
        grid-template-columns: 1fr;
    }

    .renders_gallery_item--featured {
        grid-column: auto;
    }
}

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

    .home-page .landing {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        row-gap: 32px;
    }

    .home-page .landing_text {
        grid-column: 1;
        grid-row: 2;
    }

    .home-page .landing_image_watch {
        grid-column: 1;
        grid-row: 1;
        align-items: center;
        margin-bottom: 0;
    }

    .home-page #landing_image_watch {
        max-height: 400px;
        object-position: center center;
    }

}

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

    .home-page .home-header {
        padding: var(--home-nav-offset) 0 64px;
    }

    .home-page .home-nav_inner,
    nav .page-container {
        flex-wrap: wrap;
        gap: 8px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .nav_links {
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .home-page .home-nav .nav_links p,
    .home-page .home-nav .nav_links a,
    .nav_links p,
    .nav_links a {
        font-size: 14px;
        line-height: 20px;
    }

    .home-page .home-nav .nav_links p,
    .nav_links p {
        margin-right: 8px;
    }

    .home-page #landing_image_watch {
        max-height: 260px;
    }

    h1 {
        font-size: 20px;
        line-height: 24px;
    }

    .section_heading {
        font-size: 20px;
        line-height: 28px;
    }

    .about_highlights {
        grid-template-columns: 1fr;
    }

    .about_highlights .about_card:last-child {
        grid-column: auto;
    }

    .kit_card h3,
    .faces_grid_item h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .faces_grid_item p {
        font-size: 14px;
        line-height: 20px;
    }

    .kit_grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
        margin-bottom: 0;
    }

    .kit_grid_tools {
        grid-column: auto;
    }

    .faces_grid {
        --faces-column-gap: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 24px;
        margin-bottom: 56px;
    }

    .faces_grid_item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc((100% - var(--faces-column-gap)) / 2);
    }

    .site_footer {
        padding: 20px 0 28px;
    }

    .kit_card_media {
        height: 200px;
    }

    [class^="kit_grid"] {
        grid-area: auto;
    }

    .landing_rnib_popover {
        width: min(280px, calc(100vw - (var(--page-gutter) * 2)));
    }
}

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

    .faces_grid {
        --faces-column-gap: 0;
        --faces-media-max: 176px;
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .faces_grid_item:last-child:nth-child(odd) {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }

    .kit_download > .faces_grid_button {
        width: 100%;
    }

}

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

    body {
        --page-gutter: 16px;
    }

    .faces_grid {
        row-gap: 36px;
        --faces-media-max: 160px;
    }

    .home-page .home-nav .nav_links p,
    .home-page .home-nav .nav_links a,
    .nav_links p,
    .nav_links a {
        font-size: 13px;
        line-height: 18px;
    }

    .landing_badges {
        gap: 8px;
    }

    .landing_rnib {
        flex-wrap: wrap;
    }
}
