:root {
    --scroll-padding-top: 95px;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

html {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: var(--scroll-padding-top);
    overscroll-behavior: none;
}

body {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overscroll-behavior: none;
}

body > header {
    position: sticky;
    padding: .75rem 0;
    top: 0;
    z-index: 2;
    min-height: var(--scroll-padding-top);
}

body > header nav a {
    text-transform: uppercase;
    color: white!important;
}

body > aside > header {
    text-align: right;
    padding: .5rem;
}

body > main {
    --pico-block-spacing-vertical: 0;
}

#hero {
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: rgba(0, 0, 0, 1);
}

#hero > video {
    background: rgba(0, 0, 0, 1);
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    object-fit: cover;
    z-index: 1;
    inset: 0;
    pointer-events: none;
}

#hero > div.hgroup {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    height: 100vh;
    position: relative;
    background-color: rgba(0,0,0,.5);
    z-index: 5;
}

#hero > div.hgroup > div.center {
    grid-row: 2;
    display: grid;
    justify-items: center;
    gap: 1.25rem;
}

#hero > div.hgroup > div.center > div.cred > h2 {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    white-space: nowrap;
    background: none;
    padding: 0;
}

#hero > div.hgroup > div.center > div.cred > h2::before,
#hero > div.hgroup > div.center > div.cred > h2::after {
    content: "";
    width: min(720px, 100%);
    height: 1px;
    background: rgba(255,255,255,0.5);
}

#hero > div.hgroup > div.center > div.cred > .cred-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

#hero > div.hgroup > div.center > div.cred > .cred-list li {
    padding: 0.45rem 0.85rem;
    border-radius: 50em;
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.9);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    list-style: none;
}

#hero > div.hgroup > div.center > h1 > a {
    color: white;
    --pico-color: white;
}

#hero > div.hgroup > p {
    margin: 0;
    margin-block: 0;
    padding: 0;
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
}

#heroLogo {
    display: block;
    aspect-ratio: 8/1;
    width: clamp(
        300px,   /* never shrink below 300px */
        50vw,    /* otherwise be 50% of the viewport width */
        600px    /* but never grow past 600px */
    );
    height: auto;
}

/* Invisible intercept positioned exactly at 30vh from the top */
[data-fade-intercept] {
    position: absolute;
    top: 20vh;
    height: 1px;
    width: 1px;
    pointer-events: none;
    opacity: 1;
}

.btn-lg-text {
    font-size: 3rem;
}

.btn-lg {
    font-size: .85rem;
    width: 100%;
    display: block;
    padding: 1.25rem 1.5rem;
}

.push-down {
    position: relative;
    margin-top: 100vh;
    min-height: 100vh;
    z-index: 3;
    padding-block: 0;
}

.scrollable-row {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 2rem;
    align-items: center;
    justify-content: space-around;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
.scrollable-row::-webkit-scrollbar {
    display: none;
}
.scrollable-row > a {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    max-width: 100px;
}

.img-block {
    display: block;
    height: clamp(40px, 4vh, 120px);
    max-width: 100px;
    width: auto;
    margin: 0 auto;
}
a.secondary:hover .img-block {

}

.page-section {
    padding: 1.5rem .5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
    margin: 0 0 1rlh 0;
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
    transform-style: preserve-3d;
    will-change: transform;
    transform: translateZ(0);
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

ul.page-nav {
    margin: 2rem 0;
    padding:0;
    list-style: none;
    gap: 2rem;
    column-count: 2;
    column-gap: 0;
}

ul.page-nav li {
    list-style: none;
    text-align: center;
    padding: 2rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    border-right: 1px solid rgba(255, 255, 255, .5);
}
ul.page-nav li:nth-child(2n) {
    border-bottom: none;
}
ul.page-nav li:nth-child(n+3) {
    border-right: none;
}

ul.page-nav a {
    display: block;
    padding: 0.5rem;
    text-decoration: none;
    color: inherit;
}

ul.page-nav li a span {
    font-size: 1.3rem;
    text-transform: uppercase;
    padding:0;
    margin:0;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: .75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.liner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}
.liner:after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .liner {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row;
        gap: 2rem;
        text-align: left;
    }
    .liner:before {
        margin-right: 20px;
    }
    .liner:after {
        content: "";
        flex-grow: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
        min-width: 20px;
        margin: auto;
    }
    .liner:after {
        margin-left: 20px;
    }
}
@media (min-width: 1024px) {
    .page-section {
        padding: 2rem;
    }
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        margin: 0 0 1.5rlh 0;
    }

    .img-block {
        max-width: 160px;
    }

    ul.page-nav {
        display:flex;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: center;
        flex-direction: row;
        margin: 4rem 2rem;
        padding:0;
        list-style: none;
        gap: 2rem;
    }

    ul.page-nav li {
        flex: none;
        list-style: none;
        padding: 0;
        margin: 0;
        border: none;
    }

    ul.page-nav li a span {
        font-size: 1.3rem;
        text-transform: uppercase;
        padding:0;
        margin:0;
        position:absolute;
        top: 23px;
        color: #859fb1;
        transition: .5s;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: .75rem;
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    ul.page-nav li a span svg {
        transition: .5s;
        will-change: transform;
    }

    ul.page-nav li a {
        text-decoration: none;
        display: block;
        position: relative;
        width: 210px;
        height: 90px;
        background: #ffffff;
        text-align: left;
        padding-left: 30px;
        transform: rotate(-30deg) skew(25deg) translate(0,0);
        transition: .5s;
        box-shadow: -20px 20px 10px rgba(0,0,0,.5);
        font-weight: 400;
        letter-spacing: 3px;
        transform-origin: center center;
    }

    ul.page-nav li a:before {
        content: '';
        position: absolute;
        top:10px;
        left:-20px;
        height:100%;
        width:20px;
        background: #b5bcc1;
        transition-duration: .3s;
        transform: rotate(0deg) skewY(-45deg);
    }
    ul.page-nav li a:after {
        content: '';
        position: absolute;
        bottom:-20px;
        left:-10px;
        height:20px;
        width:100%;
        background: #d5d9dc;
        transition-duration: .3s;
        transform: rotate(0deg) skewX(-45deg);
    }

    ul.page-nav li a:hover {
        transform: rotate(-30deg) skew(25deg) translate(20px,-15px);
        box-shadow: -50px 50px 50px rgba(0,0,0,.5);
    }

    ul.page-nav li:hover .fa {
        color:#fff;
    }

    ul.page-nav li:hover span {
        color:#fff;
    }

    ul.page-nav li:hover a {
        background: #30363b;
        svg {
            transform: translateX(4px);
        }
    }
    ul.page-nav li:hover a:before{
        background: #2a2c33;
    }
    ul.page-nav li:hover a:after{
        background: #3b3d47;
    }
}

#mainNav {
    > ul {
        /*display: flex;*/
        /*flex-direction: row;*/
        /*justify-content: space-between;*/
        /*align-items: center;*/
    }
}

footer {
    position: relative;
    z-index: 10;
}

.header-logo {
    line-height: 1;
}

.header-logo > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo > a {
    width: 225px;
    aspect-ratio: 8 / 1;
    display: inline-block;
}

.header-logo > a > img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.header-toggle[role="button"].outline {
    --pico-font-size: .85rem;
    --pico-primary: rgba(255, 255, 255, .7);
    --pico-primary-hover: white;
    --pico-primary-hover-background: transparent;
    --pico-border-color: transparent;
    border-color: transparent;
}

.header-toggle[role="button"].outline:focus {
    --pico-outline-width: 0;
}

.header-toggle[role="button"] > svg {
    width: clamp(.75rem, 12vw, 1.5rem);
    aspect-ratio: 1 / 1;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

#sidebar {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    z-index: 5;
    border: 0;
    color: white;
    background-color: rgba(0,0,0,0.9);
    transform: translateX(0);
    transition: transform 1s ease-out;
    overflow-y: auto;
}
#sidebar[open] {
    transform: translateX(100%);
}
#sidebar > nav {
    margin: 0 2rem;
}
#sidebar > nav > ul > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#sidebar > nav > ul > li > a {
    padding: 1rem;
}

a.btn-icon,
button.btn-icon {
    border: none;
    background: transparent;
}

a.btn-icon:link,
a.btn-icon:visited,
button.btn-icon:link,
button.btn-icon:visited {
    opacity: 0.7;
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s ease;
}

a.btn-icon:hover,
a.btn-icon:focus,
button.btn-icon:hover,
button.btn-icon:focus {
    opacity: 1;
    transform: scale(1.05);
}
.svg-icon {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    fill: white;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    #hero > div.hgroup > div.center > div.cred > .cred h2::before,
    #hero > div.hgroup > div.center > div.cred > .cred h2::after {
        width: 8vw;
        min-width: 40px;
    }

    #hero > div.hgroup > div.center > div.cred > .cred-list li {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    #sidebar[popover] {
        max-width: 80%;
    }
}

.close-dialog {
    margin-left: auto;
}

#mission article {
    --pico-card-background-color: rgba(0,0,0,0);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin: 0;
}
#mission article h3 {
    color: rgba(255, 255, 255, .9);
}
#mission article p {
    margin: 0;
    font-size: .9rem;
    text-align: left;
    color: white;
    font-weight: 200;
}


.feature {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    /*flex-direction: column;*/
    gap: 1rem;
}

.block-list {
    gap: 1rem;
    margin: 1.5rem  0;
}
.container-fluid {
    max-width: 1440px;
}
/*.container {*/
/*  opacity: 0;*/
/*  transform: translateY(30px);*/
/*  transition: opacity 0.6s ease-out, transform 0.6s ease-out;*/
/*}*/

/*.container.visible {*/
/*  opacity: 1;*/
/*  transform: translateY(0);*/
/*}*/

.py-1 {
    padding-top: 1rlh;
    padding-bottom: 1rlh;
}

.py-2 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.p-2 {
    padding: 2rem;
}

.py-3 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

textarea {
    resize: vertical;
}

.list-style-none {
    list-style-type: none;
    padding: 0;
    li {
        list-style-type: none;
        margin-bottom: .5rem;
    }
}

.assets-container {
    padding: 2rem 2rem 0 2rem;
}
.assets-container img {
    margin: 1rem 0;
    padding: 1.5rem;
}
.assets-container figcaption {
    margin: 0;
}

.skew {
    border-radius: 2.5rem 6px 2.5rem 6px;
}

h1, h2, h3, h4, h5, h6,
nav,
label,
ul.page-nav li a,
a[role="button"]
{
    font-family: 'Inter', Bahnschrift, "DIN Alternate", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

h2 {
    font-size: .85rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
    background-color: #4a5369;
    display: block;
    text-transform: uppercase;
    padding: 1rem 1rem;
    text-align: center;
    width: 100%;
    color: rgba(255, 255, 255, 1);
}

.flash-gradient header hgroup h2 {
    background: rgba(0, 0, 0, 0.3);
}

label {
    font-size: .85rem;
}

nav {
    font-size: .85rem;
}

h3 {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: .5rem;
}

h4 {
    font-size: .75rem;
}

h5 {
    --pico-font-size: .7rem;
}

dl {

}
dt {
    font-size: 1.5rem;
    font-weight: 200;
    margin-bottom: .5rem;
}
dd {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 1.5rem 0;
}
p.lead {
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-weight: 100;
    color: white;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.02em;
}

@media (min-width: 1440px) {
    p.lead {
        max-width: 85%;
    }
}


a, a:visited, a:hover, a:active, a:focus {
    --pico-text-decoration: none!important;
}

a.secondary, a.contrast {
    --pico-text-decoration: none;
}

a[role="button"] {
    --pico-font-size: .85rem;
    --pico-border-width: 3px;
    --pico-border-radius: 50px;
    --pico-form-element-spacing-vertical: .85rem;
    --pico-form-element-spacing-horizontal: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--pico-font-size);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

a[role="button"].btn-sm {
    --pico-font-size: .65rem;
    --pico-border-width: 2px;
    --pico-form-element-spacing-vertical: .6rem;
    --pico-form-element-spacing-horizontal: .8rem;
}

:is(button,[type=submit],[type=button],[role=button]).contrast {
    --pico-contrast-inverse: rgba(0, 0, 0, 0.8);
}

.bg-white {
    background: #ffffff;
}

.bg-black {
    background: #000000;
}

.bg-black-50 {
    background: rgba(0, 0, 0, 0.5);
}

.bg-light {
    background-color: rgba(255, 255, 255, 1);
}

.bg-dark {
    background-color: #000000;
}

.img-circle {
    display: block;
    /*width: 100%;*/
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.flex-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.space-between {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
}

.space-between > div {
    flex: 1 1 0;
    min-width: 0;
}

.flex-space-between {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
}

.flex-center-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.hidden,
[hidden] {
    display: none !important;
}

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
}

.fs-2 {
    font-size: 1.2rem;
}

.mh-300 {
    height: 300vh;
}

.m-0 {
    margin: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.fs-75 {
    font-size: .75rem;
}

.fw-300 {
    font-weight: 300;
}

.fill-viewport {
    position: relative;
    overflow: clip;
    contain: paint;
    min-height: calc(100vh - var(--scroll-padding-top));
}

.header-bg {
    display: inline-flex;
    padding: 1rem 2.5rem 1rem 1.5rem;
    margin: 0 0 1rem 0;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0% 100%);
    font-size: .85rem;
    border-radius: 3px;
}

.clipped-corner {
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0% 100%);
}

/** Light Theme (default) **/
[data-theme=light],
:root:not([data-theme=dark]),
:host:not([data-theme=dark]) {

    .header-bg {
        background-color: #4a5369;
        color: rgba(255, 255, 255, 1);
    }

    .lighten-05 {
        background-color: rgba(0, 0, 0, 0.05);
    }
    .lighten-10 {
        background-color: rgba(0, 0, 0, 0.1);
    }
    .lighten-15 {
        background-color: rgba(0, 0, 0, .15);
    }
    .lighten-20 {
        background-color: rgba(0, 0, 0, .2);
    }

    .assets-container img {
        border: 1px solid rgba(0, 0, 0, .1);
    }

    form :is(button,[type=submit],[type=button],[role=button]).outline.contrast {
        --pico-border-color: rgba(0, 0, 0, 1);
        --pico-background-color: rgba(0, 0, 0, 1);
        --pico-color: white;
        border-radius: 2rem;
        font-size: .8rem;
        text-transform: uppercase;
        font-weight: 600;
    }

    form :is(button,[type=submit],[type=button],[role=button]).outline.contrast:hover {
        --pico-border-color: rgba(0, 0, 0, 1);
        --pico-background-color: rgba(0, 0, 0, 1);
        --pico-color: white;
    }

}

:is(button,[type=submit],[type=button],[role=button]).secondary, [type=file]::file-selector-button, [type=reset] {
    --pico-secondary: rgba(255, 255, 255, 1);
    --pico-secondary-background: rgba(0, 0, 0, 0.2);
    --pico-secondary-border: rgba(0, 0, 0, 0.2);
    --pico-secondary-underline: none;
    --pico-secondary-hover: #48536b;
    --pico-secondary-hover-background: #48536b;
    --pico-secondary-hover-border: var(--pico-secondary-hover-background);
    --pico-secondary-hover-underline: var(--pico-secondary-hover);
    --pico-secondary-focus: rgba(93, 107, 137, 0.25);
    --pico-secondary-inverse: #fff;
}

/** Dark Theme **/
@media only screen and (prefers-color-scheme: dark) {
    :root:not([data-theme]),
    :host:not([data-theme]) {
        .header-bg {
            background-color: rgba(255,255,255,0.03);
            color: #909ebe;
        }
        .lighten-05 {
            background-color: rgba(255, 255, 255, 0.05)!important;
        }
        .lighten-10 {
            background-color: rgba(255, 255, 255, .1);
        }
        .lighten-15 {
            background-color: rgba(255, 255, 255, .15);
        }
        .lighten-20 {
            background-color: rgba(255, 255, 255, .2);
        }
    }
}

:root[data-theme=light] {
    --pico-card-box-shadow: none;
    --pico-group-box-shadow: none;
}

[data-theme=dark] {
    --pico-card-box-shadow: none;
    --pico-group-box-shadow: none;
    --pico-form-element-background-color: rgba(255, 255, 255, 0.05);
    --pico-form-element-border-color: rgba(255, 255, 255, 0.1);
    --pico-form-element-selected-background-color: rgba(255, 255, 255,1);
    --pico-form-element-color: #e0e3e7;
    --pico-form-element-placeholder-color: #8891a4;
    --pico-form-element-active-background-color: rgba(255, 255, 255,0);
    --pico-form-element-active-border-color: rgba(255, 255, 255,1);
    --pico-form-element-focus-color: rgba(255, 255, 255,0);
    --pico-form-element-disabled-opacity: 0.5;
    --pico-form-element-invalid-border-color: rgb(149.5, 74, 80);
    --pico-form-element-invalid-active-border-color: rgb(183.25, 63.5, 59);
    --pico-form-element-invalid-focus-color: var(--pico-form-element-invalid-active-border-color);
    --pico-form-element-valid-border-color: #2a7b6f;
    --pico-form-element-valid-active-border-color: rgb(22, 137, 105.5);
    --pico-form-element-valid-focus-color: var(--pico-form-element-valid-active-border-color);

    :is(button,[type=submit],[type=button],[role=button]).outline.contrast {
        --pico-contrast: rgba(255, 255, 255, 0.8);
        --pico-border-color: rgba(255, 255, 255, 0.6);
        --pico-background-color: rgba(255, 255, 255, 0);
    }

    :is(button,[type=submit],[type=button],[role=button]).outline.contrast:hover {
        /*--pico-background-color: rgba(0, 0, 0, 0.3);*/
    }

    .header-bg {
        background-color: rgba(255,255,255,0.03);
        color: #909ebe;
    }
    .lighten-05 {
        background-color: rgba(255, 255, 255, 0.05)!important;
    }
    .lighten-10 {
        background-color: rgba(255, 255, 255, .1);
    }
    .lighten-15 {
        background-color: rgba(255, 255, 255, .15);
    }
    .lighten-20 {
        background-color: rgba(255, 255, 255, .2);
    }
    .assets-container img {
        border: 1px solid rgba(255, 255, 255, .5);
    }
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.icon-link:hover svg {
    opacity: 0.6;
    background-color: rgba(0, 0, 0, 0.1); /* If using background on a wrapped <svg> */
}

.partner-logo, article {
    margin: 0;
}

.partner-logo {
    border: 2px solid rgba(0, 0, 0, .03);
    border-radius: 2rem 0 2rem 0;
}

.partner-logo a {
    padding: 2rem .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo:hover {
    border-color: rgba(0, 0, 0, .1);
}

.partner-logo h3 {
    margin: 0;
    font-size: 1rem;
}

.bg-gray {
    background: #767c91;
}

.team-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-member hgroup {
    margin: 0;
}

.team-member hgroup h3 {
    margin: 0;
}

.team-member hgroup p {
    font-size: .75rem!important;
    font-weight: 400!important;
}

article.card-content {
    padding: 1rem 1rem .75rem 1rem;
    border: 1px solid rgba(0, 0, 0, .1);
}

article.card {
    padding: 0;
    border: none;
    position: relative;
    overflow: clip;
    cursor: pointer;
    --pico-card-sectioning-background-color: transparent;
}
article.card:focus {
    outline: none;
}
article.card header {
    margin: 0;
    border: none;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 5;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
article.card header h3 {
    margin: 0;
    color: white;
}
article.card figure {
    position: relative;
}
article.card figure img {
    display: block;
    width: 100%;
    height: auto;
}
article.card figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
}
article.card figcaption {
    padding: 0;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}
article.card figcaption h4,
article.card figcaption p {
    margin: 0;
    color: white;
}
article.card figcaption h4 {
    margin-bottom: .25rlh;
}
article.card figcaption p {
    font-size: .8rem;
}

@media (prefers-reduced-motion: no-preference) {

}

figure.review {
    margin: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    row-gap: 1rem;
    height: 100%;
}

figure.review > div[property="author"] {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

figure.review > div[typeof="Person"] img[property="image"] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

figure.review [typeof="Person"] p {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0;
    margin: 0;
}

figure.review [typeof="Person"] [property="name"] {
    font-size: 1rem;
    font-weight: 600;
}

figure.review [typeof="Person"] [property="jobTitle"] {
    color: #676767;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
}

figure.review [typeof="Person"] a[property="worksFor"] > [property="name"] {
    font-size: .75rem;
    font-weight: 600;
}

figure.review > figcaption {
    margin: 0;
    padding: 0;
}

figure.review figcaption blockquote[property="reviewBody"] {
    font-size: 1.1rem;
    font-weight: 200;
    margin: 0;
    padding-left: 1.5rem;
    color: rgba(0, 0, 0, 0.85);
}

.split-screen {
    gap: 0;
    border-radius: 6px;
}

@media (min-width: 768px) {
    :root {
        --scroll-padding-top: 108px;
    }
    a[role="button"].btn-lg {
        display: inline-flex;
        width: auto;
    }
    .header-logo > a {
        width: 300px;
    }
    .feature {
        flex-direction: row
    }
    .scrollable-row {
        gap: 3rem;
    }
    .scrollable-row > a {
        padding: 3rem 0;
    }
    .scrollable-row > a {
        max-width: 150px;
    }
    header hgroup {
        width: auto;
        display: inline-block;
    }
    header hgroup h2 {
        display: inline-block;
        padding: 1rem 3rem;
        text-align: left;
        margin: 0;
    }
    .flex-space-between {
        justify-content: space-between;
        flex-direction: row;
    }

    .partner-logo a {
        min-height: 150px;
        padding: 1.5rem;
    }
}

@media (max-width: 1023px) {
    article.card.is-open figure::before {
        opacity: 1;
        transform: translateY(0);
    }
    article.card.is-open header {
        transform: translateY(20px);
        opacity: 1;
    }
    article.card.is-open figcaption {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-text {
    text-wrap: nowrap;
}

@media (min-width: 1024px) {
    :root {
        --scroll-padding-top: 114px;
    }

    .space-between {
        flex-direction: row;
        > div {
            border-radius: 0;
        }
    }


    .cta:link,
    .cta:visited {
        transform: translateX(0);
        transition: transform 0.4s ease-out;

        .cta-text {
            transform: translateX(0);
            opacity: .8;
            transition: transform 0.4s ease-out, opacity 0.4s ease-in;
        }
        .cta-icon {
            transform: translateX(0);
            transition: transform 0.4s ease-out;
        }
    }

    .cta:hover,
    .cta:active,
    .cta:focus {
        transform: translateX(10px);
        .cta-text {
            transform: translateX(5px);
            opacity: 1;
        }
        .cta-icon {
            transform: translateX(5px);
            transition: transform 0.4s ease;
        }
    }

    article.card:hover figure::before {
        opacity: 1;
        transform: translateY(0);
    }
    article.card:hover header {
        transform: translateY(20px);
        opacity: 1;
    }
    article.card:hover figcaption {
        transform: translateY(0);
        opacity: 1;
    }
    .scrollable-row {
        gap: 4rem;
    }
    .scrollable-row > a {
        max-width: 150px;
    }

    .partner-logo a {
        min-height: 200px;
        padding: 2rem;
    }
}

@media (min-width: 1440px) {
    :root {
        --scroll-padding-top: 120px;
    }
    .page-section {
        padding: 3rem 2rem;
    }
}

.flash-gradient::before {
    background: #360033;  /* fallback for old browsers */
    background: -webkit-linear-gradient(45deg, #302b63, #0b8793, #360033);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(45deg, #302b63, #0b8793, #360033); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    width: 300%;
    height: 300%;
    z-index: -1;
}

.fade-up-in {
    opacity: 0;
    transform: translateY(60px);
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    will-change: opacity, transform;
}

.fade-up-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-out {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s linear, transform 0.3s linear;
}

.fade-up-out.active {
    opacity: 0;
    transform: translateY(-100px);
}

.grow {
    transition: transform 0.1s ease;
    transform-origin: center;
}

.grow:hover {
    transform: scale(1.02);
}

.slide-down {
    opacity: 0;
    transform: translateY(-6rem);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.slide-down.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.zoom-in {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    transform: scale(.3);
    will-change: transform, opacity;
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

@supports not (animation-timeline: scroll()) {

}
@supports not (animation-timeline: view()) {
    .fade-in-left {
        transform: translateX(6rem) scale(0);
        transform-origin: left center;
        opacity: 0;
        transition:
            transform 0.5s ease-out,
            opacity   0.5s ease-in;
        will-change: transform, opacity;
    }

    .fade-in-left.active {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    .fade-up-in:nth-child(1) { transition-delay: 100ms; }
    .fade-up-in:nth-child(2) { transition-delay: 200ms; }
    .fade-up-in:nth-child(3) { transition-delay: 300ms; }
    .fade-up-in:nth-child(4) { transition-delay: 400ms; }
    .fade-up-in:nth-child(5) { transition-delay: 500ms; }
    .fade-up-in:nth-child(6) { transition-delay: 600ms; }

    .zoom-in.active:nth-child(1) { transition-delay: 0.10s; }
    .zoom-in.active:nth-child(2) { transition-delay: 0.20s; }
    .zoom-in.active:nth-child(3) { transition-delay: 0.30s; }
    .zoom-in.active:nth-child(4) { transition-delay: 0.40s; }
    .zoom-in.active:nth-child(5) { transition-delay: 0.50s; }
    .zoom-in.active:nth-child(6) { transition-delay: 0.60s; }
    .zoom-in.active:nth-child(7) { transition-delay: 0.70s; }
    .zoom-in.active:nth-child(8) { transition-delay: 0.80s; }
    .zoom-in.active:nth-child(9) { transition-delay: 0.90s; }
    .zoom-in.active:nth-child(10) { transition-delay: 1s; }
    .zoom-in.active:nth-child(11) { transition-delay: 1.1s; }
    .zoom-in.active:nth-child(12) { transition-delay: 1.2s; }
    .zoom-in.active:nth-child(13) { transition-delay: 1.3s; }
    .zoom-in.active:nth-child(14) { transition-delay: 1.4s; }
    .zoom-in.active:nth-child(15) { transition-delay: 1.5s; }
    .zoom-in.active:nth-child(16) { transition-delay: 1.6s; }
    .zoom-in.active:nth-child(17) { transition-delay: 1.7s; }
    .zoom-in.active:nth-child(18) { transition-delay: 1.8s; }
}

@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
    html {
        scroll-timeline-name: --page-scroll;
    }
    .fade-up-out {
        animation: fade-up-out linear forwards;
        animation-timeline: --page-scroll;
        animation-range: 0vh 30vh;
        transition: none;
        contain: paint layout;
    }
    .slide-down {
        animation: fade-down ease-in forwards;
        animation-timeline: --page-scroll;
        animation-range-start: 45vh;
        animation-range-end: 100vh;
        transition: none;
    }
}

@supports ((animation-timeline: view()) and (animation-range: 0% 100%)) {
    .fade-up-in {
        animation: fade-up-in linear forwards;
        animation-timeline: view();
        animation-fill-mode: both;
        animation-duration: 500ms;
        animation-range-start: var(--start-range, entry 0vh);
        animation-range-end: var(--end-range, entry 20vh);
        contain: paint layout;
        transition: none;
    }

    .fade-up-in:nth-child(1) { animation-delay: 0s; }
    .fade-up-in:nth-child(2) { animation-delay: 100ms; }
    .fade-up-in:nth-child(3) { animation-delay: 200ms; }
    .fade-up-in:nth-child(4) { animation-delay: 300ms; }
    .fade-up-in:nth-child(5) { animation-delay: 400ms; }
    .fade-up-in:nth-child(6) { animation-delay: 500ms; }

    .fade-up-in.fast {
        animation-range-start: entry 0vh;
        animation-range-end: entry 30vh;
    }

    .fade-down-in {
        animation: fade-down-in cubic-bezier(0.33, 1, 0.68, 1) forwards;
        animation-timeline: view();
        animation-fill-mode: both;
        animation-duration: 800ms;
        animation-range-start: var(--start-range, entry 0vh);
        animation-range-end: var(--end-range, entry 50vh);
        transition: none;
    }

    .fade-down-in:nth-child(1) { animation-delay: 0ms; }
    .fade-down-in:nth-child(2) { animation-delay: 100ms; }
    .fade-down-in:nth-child(3) { animation-delay: 150ms; }
    .fade-down-in:nth-child(4) { animation-delay: 200ms; }

    .range-late {
        --start-range: entry 25vh;
        --end-range: entry 40vh;
    }

    .range-early {
        --start-range: entry 0vh;
        --end-range: entry 15vh;
    }

    .flash-gradient::before {
        animation-duration: 1s;
        animation-name: move-clockwise;
        animation-timing-function: ease-out;
        animation-timeline: view();
        animation-fill-mode: both;
        animation-range-start: entry 0vh;
        animation-range-end: entry 100vh;
        transition: none;
    }

    .zoom-in {
        animation-timeline: view();
        animation-name: zoom-in;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
        animation-range-start: entry 0vh;
        animation-range-end: entry 40vh;
        animation-delay: 0s;
        animation-duration: 200ms;
        transition: none;
    }

    .zoom-in:nth-child(2n+1) { animation-delay: 0s; }
    .zoom-in:nth-child(2n+2) { animation-delay: 200ms; }

    @media (min-width: 768px) {
        .scrollable-row {
            overflow-x: clip;
        }
        .fade-in-left {
            animation-name: fade-in-left;
            animation-timing-function: ease-out;
            animation-timeline: view();
            animation-fill-mode: both;
            animation-duration: 1s;
            animation-delay: 0ms;
            animation-range-start: entry 0vh;
            animation-range-end: entry 40vh;
            transition: none;
        }
        .fade-in-left:nth-child(1) {
            animation-delay: 200ms;
        }
        .fade-in-left:nth-child(2) {
            animation-delay: 400ms;
        }
        .fade-in-left:nth-child(3) {
            animation-delay: 600ms;
        }
        .fade-in-left:nth-child(4) {
            animation-delay: 800ms;
        }
        .fade-in-left:nth-child(5) {
            animation-delay: 1000ms;
        }

        .zoom-in { animation-duration: 400ms; }
        .zoom-in:nth-child(3n+1) { animation-delay: 0s;   }
        .zoom-in:nth-child(3n+2) { animation-delay: 200ms; }
        .zoom-in:nth-child(3n+3) { animation-delay: 400ms; }
    }

    @media (min-width: 1024px) {
        .zoom-in { animation-duration: 800ms; }
        .zoom-in:nth-child(4n+1) { animation-delay: 0s;   }
        .zoom-in:nth-child(4n+2) { animation-delay: 200ms; }
        .zoom-in:nth-child(4n+3) { animation-delay: 400ms; }
        .zoom-in:nth-child(4n+4) { animation-delay: 600ms; }
        .zoom-in:nth-child(5n+5) { animation-delay: 800ms; }
    }
}

@keyframes fade-out {
    from { opacity: .9; transform: translateY(-20px); }
    to   { opacity: .3; transform: translateY(0); }
}

@keyframes overlay-fade-up {
    from { opacity: 0; transform: translateY(100%); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-down {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-up-out {
    to {
        opacity: 0;
        transform: translateY(-120px);
    }
}

@keyframes move-clockwise {
    0% { transform: translate(0%, 0%); }
    25% { transform: translate(-66.6%, 0%); }
    50% { transform: translate(-66.6%, -66.6%); }
    75% { transform: translate(0%, -66.6%); }
    100% { transform: translate(0%, 0%); }
}

@keyframes move-counterclockwise {
    0% { transform: translate(0%, 0%); }
    25% { transform: translate(0%, -66.6%); }
    50% { transform: translate(-66.6%, -66.6%); }
    75% { transform: translate(-66.6%, 0%); }
    100% { transform: translate(0%, 0%); }
}

@keyframes opacity-pulse {
    0% { opacity: 0.20; }
    100% { opacity: 0.95; }
}

@keyframes zoom-in {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fade-up-in {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-down-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
