@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
:root {
    --teal: #1fc7b3;
    --teal-dim: #0f9c8b;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    overflow: hidden;
    background: #000;
}
body {
    font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}
header {
    position: fixed;
    top: 0;
    left: 50%;
    width: 3840px;
    height: 240px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    padding: 60px 56px 0;
    z-index: 20;
    pointer-events: none;
}
.logo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 76px;
    height: 132px;
}
.logo-bar img {
    display: block;
    height: 112px;
    width: auto;
    max-width: none;
}
.logo-bar img.logo-zo {
    height: 132px;
    width: auto;
}
.logo-divider {
    width: 1px;
    height: 112px;
    flex: 0 0 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.45), transparent);
}
main {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 3840px;
    height: 2160px;
    transform: translate(-50%, -50%);
    overflow: hidden;
    background: #000;
    z-index: 1;
}
.background-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 3840px;
    height: 2160px;
    display: block;
    object-fit: fill;
    object-position: center;
    background: #000;
    z-index: 1;
}

#activateOverlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 3840px;
    height: 2160px;
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    background: rgba(6, 10, 16, .72);
    color: rgba(255, 255, 255, .82);
    font-family: inherit;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.5;
    text-align: center;
    z-index: 50;
    opacity: 1;
    transition: opacity .6s ease;
}
#activateOverlay.hidden {
    opacity: 0;
    pointer-events: none;
}