@font-face {
    font-family: "Helios Extended";
    src: url("../fonts/HeliosExtThinC.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Helios Extended";
    src: url("../fonts/HeliosExtC.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

:root {
    --zetari-blue: #0047ff;
    --zetari-acid: #d4ff00;
    --zetari-black: #030303;
    --zetari-white: #f4f1e8;
    --zetari-line: rgba(3, 3, 3, 0.18);
    --font-main: "Helios Extended";
    --body-text-size: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.zetari-theme {
    margin: 0;
    color: var(--zetari-black);
    background: var(--zetari-white);
    font-family: var(--font-main), Arial, sans-serif;
    font-size: var(--body-text-size);
    font-weight: 300;
    font-synthesis: none;
    letter-spacing: 0;
}

.zetari-theme,
.zetari-theme * {
    font-synthesis: none !important;
}

body.popup-is-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

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

.launch-page {
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 100svh;
    background: var(--zetari-blue);
    isolation: isolate;
}

.hero-media,
.hero-video,
.hero-image-fallback {
    position: absolute;
    inset: 0;
}

.hero-media {
    overflow: hidden;
    background: var(--zetari-blue);
}

.hero-video {
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-fallback {
    z-index: 0;
    background: var(--zetari-blue);
}

.statement-section {
    display: grid;
    min-height: 58svh;
    padding: clamp(72px, 10vw, 132px) 24px;
    align-content: center;
    color: var(--zetari-black);
    background: var(--zetari-white);
}

.statement-section h1 {
    max-width: 920px;
    margin: 0 auto 40px;
    font-size: clamp(25px, 3.4vw, var(--statement-heading-size, 54px));
    font-weight: 400;
    line-height: 0.98;
    text-align: center;
    text-transform: uppercase;
}

.statement-section p {
    max-width: 1020px;
    margin: 0 auto;
    font-size: var(--body-text-size);
    font-weight: 300;
    line-height: 1.02;
    text-align: center;
    text-transform: none;
}

.statement-section p + p {
    margin-top: 16px;
}

.kicker,
.popup-panel h2,
.popup-discount,
.popup-form button,
.private-list-copy h2,
.private-list-discount,
.private-list-form button {
    font-weight: 400;
    text-transform: uppercase;
}

.kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: var(--zetari-black);
    font-size: 10px;
    line-height: 1;
}

.private-list-section {
    padding: clamp(44px, 12vw, 72px) 16px;
    color: var(--zetari-black);
    background: var(--zetari-acid);
}

.private-list-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100%, 560px);
    margin: 0 auto;
    align-items: start;
}

.private-list-copy h2 {
    max-width: none;
    margin: 0;
    font-size: clamp(27px, 10.4vw, 46px);
    line-height: 1;
}

.private-list-copy ul {
    display: grid;
    gap: 7px;
    max-width: none;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
    font-size: var(--body-text-size);
    font-weight: 300;
    line-height: 1.12;
}

.private-list-discount {
    margin: 24px 0 0;
    font-size: clamp(20px, 2.6vw, 34px);
    line-height: 1;
}

.private-list-form,
.popup-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    border: 1px solid var(--zetari-black);
}

.private-list-form {
    align-self: start;
}

.popup-form {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.private-list-form input,
.popup-form input {
    width: 100%;
    min-height: 58px;
    padding: 0 15px;
    color: var(--zetari-black);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: var(--body-text-size);
    font-weight: 300;
}

.private-list-form input::placeholder,
.popup-form input::placeholder {
    color: rgba(3, 3, 3, 0.44);
    text-transform: uppercase;
}

.private-list-form button,
.popup-form button {
    min-height: 58px;
    padding: 0 22px;
    color: var(--zetari-white);
    cursor: pointer;
    background: var(--zetari-black);
    border: 0;
    border-left: 1px solid var(--zetari-black);
    font-size: 11px;
}

.popup[hidden] {
    display: none;
}

.popup {
    position: fixed;
    z-index: 50;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
}

.popup-backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: rgba(3, 3, 3, 0.34);
    border: 0;
    backdrop-filter: blur(12px);
}

.popup-panel {
    position: relative;
    width: min(100%, 680px);
    padding: 24px;
    color: var(--zetari-black);
    background: var(--zetari-white);
    border: 1px solid var(--zetari-black);
}

.popup-panel::before {
    position: absolute;
    inset: 10px;
    pointer-events: none;
    content: "";
    border: 1px solid var(--zetari-line);
}

.popup-close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    color: var(--zetari-black);
    cursor: pointer;
    background: transparent;
    border: 0;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
}

.popup-panel h2 {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    font-size: clamp(28px, 4vw, var(--popup-title-size, 54px));
    line-height: 0.98;
}

.popup-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
    max-width: 520px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
    font-size: var(--body-text-size);
    font-weight: 300;
    line-height: 1.12;
}

.popup-discount {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--zetari-blue);
    font-size: clamp(20px, 2.8vw, 34px);
    line-height: 1;
}

.form-message {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    color: var(--zetari-blue);
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
}

.form-message--error {
    color: var(--zetari-black);
}

@media (max-width: 780px) {
    .statement-section {
        padding: 72px 18px;
    }

    .private-list-form,
    .popup-form {
        grid-template-columns: 1fr;
    }

    .popup-panel {
        padding: 22px;
    }

    .private-list-form button,
    .popup-form button {
        border-top: 1px solid var(--zetari-black);
        border-left: 0;
    }
}

@media (min-width: 980px) {
    .private-list-section {
        padding: clamp(56px, 7vw, 88px) 18px;
    }

    .private-list-inner {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
        gap: clamp(28px, 5vw, 72px);
        width: min(100%, 1160px);
        align-items: end;
    }

    .private-list-copy h2 {
        max-width: 720px;
        font-size: clamp(34px, 4vw, 56px);
        line-height: 0.98;
    }

    .private-list-copy ul {
        max-width: 560px;
    }

    .private-list-form {
        align-self: end;
    }
}
