* {
    box-sizing: border-box;
}

:root {
    --color-bg: #000;
    --color-text: #fff;
    --color-text-muted: rgba(255, 255, 255, 0.72);
    --font-body: Helvetica, Arial, sans-serif;
    --font-display: HelveticaNeue, serif;
    --nav-footer-padding: 20px;
    --nav-footer-font-size: 18px;
    --nav-footer-letter-spacing: 2px;
}

body {
    color: var(--color-text);
    font-family: var(--font-body);
    margin: 0;
    overflow-x: hidden;
    background: transparent;
    transition: background-color 0.25s ease;
}

body.content-mode {
    background: var(--color-bg);
}

#vanta-bg {
    position: fixed;
    z-index: -1;
    inset: 0;
    min-height: 100lvh;
    width: 100vw;
}

#vanta-bg.is-hidden {
    opacity: 0;
}

#vanta-bg,
#vanta-bg canvas {
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
}

#vanta-bg {
    transition: opacity 0.25s ease;
}

.nav,
.footer {
    position: fixed;
    width: 100%;
    padding: var(--nav-footer-padding);
    letter-spacing: var(--nav-footer-letter-spacing);
    font-size: var(--nav-footer-font-size);
    z-index: 10;
}

.nav {
    display: flex;
    justify-content: space-between;
}

.nav-item-left {
    text-align: left;
}

.nav-item-right {
    text-align: right;
}

.footer {
    bottom: 0;
    left: 0;
    text-align: center;
}

.nav a,
.footer a,
.home-more-text a,
.contact-block a,
.side a,
.release-big .icon {
    color: var(--color-text);
    text-decoration: none;
}

.nav a:hover,
.nav a.active,
.footer a:hover,
.icon:hover svg,
.release-big .icon:hover svg {
    color: var(--color-text);
    fill: var(--color-text);
}

.nav a:hover,
.nav a.active {
    text-decoration: underline;
}

.nav a.active {
    font-weight: bold;
}

.main {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.main-inner {
    width: 100%;
    text-align: center;
}

.main h1,
.main h2 {
    position: relative;
    z-index: 2;
    letter-spacing: 10px;
    font-family: var(--font-display);
    font-weight: bold;
}

.main h1 {
    font-size: 8vw;
    line-height: 0.71;
}

.main h2 {
    font-size: 4vw;
}

#main-content {
    scrollbar-width: none; /* Firefox */
    width: 100%;
}

#main-content::-webkit-scrollbar {
    display: none; /* Chrome */
}

.home-main {
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 90px;
}

.page-shell,
.content-block {
    width: min(760px, 100%);
    margin: 0 auto;
}

.page-shell {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 90px;
}

.content-kicker {
    margin: 0 0 18px;
    font-size: 12px;
    letter-spacing: 4px;
}

.content-lead,
.content-body {
    max-width: 42rem;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.content-body + .content-body,
.content-lead {
    margin-top: 18px;
}

.policy-copy {
    align-self: flex-start;
    width: min(42rem, 100%);
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.page-shell h2 {
    margin: 0 0 20px;
    max-width: 12ch;
    line-height: 0.95;
}

.content-block-home h1 {
    margin: 0;
}

.page-shell a,
.content-block a {
    color: var(--color-text);
}

.email-link {
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.content-list {
    width: min(100%, 42rem);
    margin: 0 auto;
    padding: 0;
    list-style: none;
    color: var(--color-text-muted);
    text-align: center;
}

.content-list li + li {
    margin-top: 14px;
}

.content-list a {
    display: inline-block;
    padding: 6px 0;
    letter-spacing: 1px;
    text-decoration: none;
}

.content-list a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-top: 18px;
}

th,
td {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 14px;
    text-align: left;
}

th {
    color: var(--color-text);
    font-weight: 700;
}

.section-divider {
    width: min(100%, 42rem);
    height: 1px;
    margin: 32px auto 28px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
}

@media (max-width: 768px) {
    .nav,
    .footer {
        font-size: 10px;
        padding: 10px;
    }

    .main h1 {
        font-size: 16vw;
        letter-spacing: 6px;
    }

    .main h2 {
        font-size: 8vw;
    }

    .page-shell,
    .home-main {
        padding: 110px 18px 72px;
    }

    .content-lead,
    .content-body {
        font-size: 15px;
    }
}
