/* =========================================================
   BANSI PICTURES — PITCH
   THE SCREENING ROOM
========================================================= */

:root {

    --pitch-black:
        #070707;

    --pitch-dark:
        #101010;

    --pitch-panel:
        #151515;

    --pitch-white:
        #e8e8e3;

    --pitch-muted:
        rgba(232,232,227,.42);

    --pitch-faint:
        rgba(232,232,227,.12);

    --pitch-yellow:
        #e5b800;

}


/* =========================================================
   GLOBAL
========================================================= */

.pitch-page {

    margin: 0;

    background:
        var(--pitch-black);

    color:
        var(--pitch-white);

    overflow-x: hidden;

    font-family:
        "Manrope",
        sans-serif;

}


.pitch-page a {

    color: inherit;

    text-decoration: none;

}


.pitch-page input,
.pitch-page textarea,
.pitch-page select,
.pitch-page button {

    font-family:
        inherit;

}


/* =========================================================
   GRAIN
========================================================= */

.pitch-page::before {

    content: "";

    position: fixed;

    inset: 0;

    z-index: 9990;

    pointer-events: none;

    opacity: .035;

    background-image:

        repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            rgba(255,255,255,.4) 1px,
            transparent 2px
        );

    background-size:
        5px 5px;

    mix-blend-mode:
        screen;

}


/* =========================================================
   LOADER
========================================================= */

.pitch-loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background:
        var(--pitch-black);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 20px;

    pointer-events: none;

}


.pitch-loader-frame {

    position: relative;

    width: 70px;

    height: 70px;

}


.pitch-loader-frame span {

    position: absolute;

    width: 18px;

    height: 18px;

}


.pitch-loader-frame span:nth-child(1) {

    top: 0;

    left: 0;

    border-top:
        1px solid var(--pitch-yellow);

    border-left:
        1px solid var(--pitch-yellow);

}


.pitch-loader-frame span:nth-child(2) {

    top: 0;

    right: 0;

    border-top:
        1px solid var(--pitch-yellow);

    border-right:
        1px solid var(--pitch-yellow);

}


.pitch-loader-frame span:nth-child(3) {

    bottom: 0;

    left: 0;

    border-bottom:
        1px solid var(--pitch-yellow);

    border-left:
        1px solid var(--pitch-yellow);

}


.pitch-loader-frame span:nth-child(4) {

    bottom: 0;

    right: 0;

    border-bottom:
        1px solid var(--pitch-yellow);

    border-right:
        1px solid var(--pitch-yellow);

}


.pitch-loader-line {

    width: 130px;

    height: 1px;

    background:
        rgba(255,255,255,.3);

    transform-origin:
        left;

}


.pitch-loader > span {

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .2em;

    color:
        rgba(255,255,255,.3);

}


/* =========================================================
   HEADER
========================================================= */

.pitch-header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    height: 90px;

    padding:
        0 42px;

    z-index: 500;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.pitch-logo {

    display: flex;

    align-items: center;

    gap: 12px;

}


.pitch-logo-mark {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,.5);

    font-family:
        "Space Grotesk",
        sans-serif;

}


.pitch-logo > span:last-child {

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: .15em;

}


.pitch-header-right {

    display: flex;

    align-items: center;

    gap: 30px;

}


.pitch-counter {

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: .15em;

    color:
        rgba(255,255,255,.3);

}


.pitch-menu-button {

    width: 38px;

    height: 38px;

    border:
        1px solid rgba(255,255,255,.35);

    background:
        transparent;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

    cursor: pointer;

}


.pitch-menu-button span {

    width: 13px;

    height: 1px;

    background:
        #fff;

}


/* =========================================================
   HUD
========================================================= */

.pitch-hud {

    position: fixed;

    z-index: 450;

    top: 115px;

    right: 42px;

    display: flex;

    gap: 18px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 6px;

    letter-spacing: .13em;

    color:
        rgba(255,255,255,.2);

}


.hud-rec {

    color:
        #d84a4a;

}


/* =========================================================
   OPENING
========================================================= */

.pitch-opening {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(255,255,255,.035),
            transparent 30%
        ),

        var(--pitch-black);

}


.pitch-opening::after {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    bottom: 0;

    width: 1px;

    background:
        rgba(255,255,255,.055);

}


/* =========================================================
   OPENING META
========================================================= */

.pitch-opening-meta {

    position: absolute;

    top: 135px;

    left: 42px;

    right: 42px;

    display: flex;

    justify-content: space-between;

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .18em;

    color:
        rgba(255,255,255,.25);

}


.pitch-opening-meta span:first-child {

    color:
        var(--pitch-yellow);

}


/* =========================================================
   OPENING TITLE
========================================================= */

.pitch-opening-title {

    position: relative;

    z-index: 5;

    width: 78vw;

}


.pitch-opening-title span {

    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            90px,
            15vw,
            240px
        );

    line-height: .7;

    letter-spacing:
        -.095em;

    font-weight: 300;

}


.pitch-opening-title span:nth-child(2) {

    margin-left:
        16vw;

}


.pitch-opening-title .pitch-outline {

    margin-left:
        7vw;

    color:
        transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.45);

}


/* =========================================================
   OPENING COPY
========================================================= */

.pitch-opening-copy {

    position: absolute;

    left: 9vw;

    bottom: 100px;

    display: flex;

    gap: 15px;

    align-items: flex-start;

}


.pitch-opening-copy > span {

    width: 35px;

    height: 1px;

    margin-top: 7px;

    background:
        var(--pitch-yellow);

}


.pitch-opening-copy p {

    width: 250px;

    margin: 0;

    font-size: 10px;

    line-height: 1.75;

    color:
        rgba(255,255,255,.35);

}


/* =========================================================
   VIEWFINDER
========================================================= */

.pitch-viewfinder {

    position: absolute;

    inset:
        18vh 11vw;

    pointer-events: none;

}


.pitch-vf-top-left,
.pitch-vf-top-right,
.pitch-vf-bottom-left,
.pitch-vf-bottom-right {

    position: absolute;

    width: 45px;

    height: 45px;

}


.pitch-vf-top-left {

    top: 0;

    left: 0;

    border-top:
        1px solid rgba(255,255,255,.2);

    border-left:
        1px solid rgba(255,255,255,.2);

}


.pitch-vf-top-right {

    top: 0;

    right: 0;

    border-top:
        1px solid rgba(255,255,255,.2);

    border-right:
        1px solid rgba(255,255,255,.2);

}


.pitch-vf-bottom-left {

    bottom: 0;

    left: 0;

    border-bottom:
        1px solid rgba(255,255,255,.2);

    border-left:
        1px solid rgba(255,255,255,.2);

}


.pitch-vf-bottom-right {

    bottom: 0;

    right: 0;

    border-bottom:
        1px solid rgba(255,255,255,.2);

    border-right:
        1px solid rgba(255,255,255,.2);

}


.pitch-vf-center {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 55px;

    height: 55px;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(255,255,255,.1);

}


.pitch-vf-center::before,
.pitch-vf-center::after {

    content: "";

    position: absolute;

    background:
        rgba(255,255,255,.18);

}


.pitch-vf-center::before {

    width: 1px;

    height: 75px;

    top: -10px;

    left: 50%;

}


.pitch-vf-center::after {

    width: 75px;

    height: 1px;

    left: -10px;

    top: 50%;

}


.pitch-vf-label {

    position: absolute;

    right: 15px;

    top: 15px;

    display: flex;

    flex-direction: column;

    gap: 7px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 6px;

    letter-spacing: .15em;

    color:
        rgba(255,255,255,.25);

}


/* =========================================================
   SCROLL
========================================================= */

.pitch-opening-scroll {

    position: absolute;

    right: 9vw;

    bottom: 100px;

    display: flex;

    align-items: center;

    gap: 15px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .15em;

    color:
        rgba(255,255,255,.25);

}


.pitch-opening-scroll span:last-child {

    width: 50px;

    height: 1px;

    background:
        rgba(255,255,255,.2);

}


/* =========================================================
   FORM SECTION
========================================================= */

.pitch-form-section {

    position: relative;

    background:
        var(--pitch-dark);

    border-top:
        1px solid rgba(255,255,255,.08);

    padding:
        150px 9vw 180px;

}


.pitch-form-intro {

    max-width: 700px;

    margin-bottom: 130px;

}


.pitch-form-intro > span {

    display: block;

    margin-bottom: 25px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .2em;

    color:
        var(--pitch-yellow);

}


.pitch-form-intro h2 {

    margin: 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            90px,
            12vw,
            180px
        );

    line-height: .72;

    letter-spacing:
        -.09em;

    font-weight: 300;

}


.pitch-form-intro h2 em {

    color:
        var(--pitch-yellow);

    font-style: normal;

}


.pitch-form-intro p {

    width: 350px;

    max-width: 90vw;

    margin-top: 45px;

    font-size: 11px;

    line-height: 1.8;

    color:
        rgba(255,255,255,.4);

}


/* =========================================================
   FORM STEP
========================================================= */

.pitch-form-step {

    display: grid;

    grid-template-columns:
        70px
        1fr;

    gap: 40px;

    padding:
        100px 0;

    border-top:
        1px solid rgba(255,255,255,.1);

}


.pitch-step-number {

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: .15em;

    color:
        var(--pitch-yellow);

}


.pitch-step-content {

    max-width: 850px;

}


.pitch-step-heading {

    margin-bottom: 55px;

}


.pitch-step-heading > span {

    display: block;

    margin-bottom: 15px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .18em;

    color:
        rgba(255,255,255,.3);

}


.pitch-step-heading h3 {

    margin: 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            45px,
            6vw,
            90px
        );

    line-height: .8;

    letter-spacing:
        -.065em;

    font-weight: 300;

}


/* =========================================================
   FIELDS
========================================================= */

.pitch-fields {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        45px 30px;

}


.pitch-field-full {

    grid-column:
        1 / -1;

}


.pitch-field {

    position: relative;

}


.pitch-field label {

    display: block;

    margin-bottom: 13px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .16em;

    color:
        rgba(255,255,255,.35);

}


.pitch-field input,
.pitch-field textarea,
.pitch-field select {

    width: 100%;

    padding:
        15px 0;

    border: 0;

    border-bottom:
        1px solid rgba(255,255,255,.18);

    outline: none;

    background:
        transparent;

    color:
        var(--pitch-white);

    font-size: 13px;

    transition:
        border-color .3s ease;

}


.pitch-field textarea {

    resize:
        vertical;

    min-height:
        180px;

    line-height:
        1.7;

}


.pitch-field select {

    cursor:
        pointer;

    appearance:
        none;

}


.pitch-field select option {

    background:
        #111;

    color:
        #fff;

}


.pitch-field input::placeholder,
.pitch-field textarea::placeholder {

    color:
        rgba(255,255,255,.2);

}


.pitch-field input:focus,
.pitch-field textarea:focus,
.pitch-field select:focus {

    border-color:
        var(--pitch-yellow);

}


/* =========================================================
   CHOICES
========================================================= */

.pitch-choice-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

}


.pitch-choice {

    position: relative;

}


.pitch-choice input {

    position: absolute;

    opacity: 0;

    pointer-events: none;

}


.pitch-choice span {

    display: block;

    padding:
        17px 14px;

    border:
        1px solid rgba(255,255,255,.13);

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .12em;

    color:
        rgba(255,255,255,.4);

    cursor:
        pointer;

    transition:
        all .3s ease;

}


.pitch-choice span:hover {

    border-color:
        rgba(229,184,0,.5);

}


.pitch-choice input:checked + span {

    border-color:
        var(--pitch-yellow);

    color:
        var(--pitch-yellow);

    background:
        rgba(229,184,0,.04);

}


/* =========================================================
   EMOTIONS
========================================================= */

.pitch-emotion-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

}


.pitch-emotion-grid label {

    margin: 0;

}


.pitch-emotion-grid input {

    display: none;

}


.pitch-emotion-grid span {

    display: block;

    padding:
        18px 15px;

    border:
        1px solid rgba(255,255,255,.13);

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .12em;

    color:
        rgba(255,255,255,.4);

    cursor:
        pointer;

    transition:
        all .3s ease;

}


.pitch-emotion-grid input:checked + span {

    color:
        var(--pitch-yellow);

    border-color:
        var(--pitch-yellow);

}


/* =========================================================
   CHARACTER COUNT
========================================================= */

.pitch-character-count {

    margin-top: 10px;

    text-align: right;

    font-family:
        "DM Mono",
        monospace;

    font-size: 6px;

    letter-spacing: .12em;

    color:
        rgba(255,255,255,.2);

}


/* =========================================================
   UPLOAD
========================================================= */

.pitch-upload input {

    display: none;

}


.pitch-upload-box {

    min-height: 260px;

    border:
        1px dashed rgba(255,255,255,.2);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    cursor:
        pointer;

    transition:
        border-color .3s ease,
        background .3s ease;

}


.pitch-upload-box:hover {

    border-color:
        var(--pitch-yellow);

    background:
        rgba(229,184,0,.025);

}


.pitch-upload-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,.25);

    font-size: 20px;

    font-weight: 300;

    color:
        var(--pitch-yellow);

}


.pitch-upload-box strong {

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: .16em;

    font-weight: 400;

}


.pitch-upload-box span,
.pitch-upload-box small {

    font-family:
        "DM Mono",
        monospace;

    font-size: 6px;

    letter-spacing: .13em;

    color:
        rgba(255,255,255,.25);

}


.pitch-file-name {

    margin-top: 15px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    color:
        var(--pitch-yellow);

}


/* =========================================================
   SUBMIT
========================================================= */

.pitch-submit-section {

    padding:
        120px 0 40px;

    border-top:
        1px solid rgba(255,255,255,.1);

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

}


.pitch-submit-copy > span {

    display: block;

    margin-bottom: 12px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .17em;

    color:
        var(--pitch-yellow);

}


.pitch-submit-copy p {

    width: 300px;

    margin: 0;

    font-size: 11px;

    line-height: 1.7;

    color:
        rgba(255,255,255,.35);

}


.pitch-submit-button {

    min-width:
        260px;

    padding:
        22px 25px;

    border:
        1px solid rgba(255,255,255,.35);

    background:
        transparent;

    color:
        var(--pitch-white);

    display: flex;

    align-items: center;

    justify-content: space-between;

    cursor:
        pointer;

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: .15em;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

}


.pitch-submit-button strong {

    color:
        var(--pitch-yellow);

    font-size: 16px;

    font-weight: 300;

}


.pitch-submit-button:hover {

    background:
        var(--pitch-yellow);

    border-color:
        var(--pitch-yellow);

    color:
        #080808;

}


.pitch-submit-button:hover strong {

    color:
        #080808;

}


.pitch-form-status {

    position: absolute;

    margin-top: 100px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .12em;

    color:
        var(--pitch-yellow);

}


/* =========================================================
   FINAL
========================================================= */

.pitch-final {

    position: relative;

    min-height: 85vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        #060606;

    border-top:
        1px solid rgba(255,255,255,.08);

}


.pitch-final > span {

    position: relative;

    z-index: 3;

    margin-bottom: 30px;

    font-family:
        "DM Mono",
        monospace;

    font-size: 7px;

    letter-spacing: .2em;

    color:
        rgba(255,255,255,.25);

}


.pitch-final h2 {

    position: relative;

    z-index: 3;

    margin: 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            90px,
            13vw,
            200px
        );

    line-height: .7;

    letter-spacing:
        -.09em;

    font-weight: 300;

}


.pitch-final h2 em {

    color:
        var(--pitch-yellow);

    font-style: normal;

}


/* frame */

.pitch-final-frame {

    position: absolute;

    inset:
        13vh 13vw;

    border:
        1px solid rgba(255,255,255,.08);

}


.pitch-final-frame span {

    position: absolute;

    width: 35px;

    height: 35px;

}


.pitch-final-frame span:nth-child(1) {

    top: -1px;

    left: -1px;

    border-top:
        1px solid var(--pitch-yellow);

    border-left:
        1px solid var(--pitch-yellow);

}


.pitch-final-frame span:nth-child(2) {

    top: -1px;

    right: -1px;

    border-top:
        1px solid var(--pitch-yellow);

    border-right:
        1px solid var(--pitch-yellow);

}


.pitch-final-frame span:nth-child(3) {

    bottom: -1px;

    left: -1px;

    border-bottom:
        1px solid var(--pitch-yellow);

    border-left:
        1px solid var(--pitch-yellow);

}


.pitch-final-frame span:nth-child(4) {

    bottom: -1px;

    right: -1px;

    border-bottom:
        1px solid var(--pitch-yellow);

    border-right:
        1px solid var(--pitch-yellow);

}


.pitch-final-meta {

    position: absolute;

    left: 42px;

    right: 42px;

    bottom: 35px;

    display: flex;

    justify-content: space-between;

    font-family:
        "DM Mono",
        monospace;

    font-size: 6px;

    letter-spacing: .15em;

    color:
        rgba(255,255,255,.2);

}


/* =========================================================
   MENU
========================================================= */

.pitch-menu-overlay {

    position: fixed;

    inset: 0;

    z-index: 10000;

    padding:
        120px 9vw;

    background:
        #101010;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}

.pitch-menu-overlay nav {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.pitch-menu-overlay nav a {

    display: flex;

    align-items: baseline;

    gap: 25px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            50px,
            7vw,
            100px
        );

    line-height: .9;

    letter-spacing:
        -.06em;

    font-weight: 300;

}


.pitch-menu-overlay nav a span {

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    color:
        var(--pitch-yellow);

}


.pitch-menu-close {

    position: absolute;

    top: 30px;

    right: 42px;

    border: 0;

    background:
        transparent;

    color:
        #fff;

    font-family:
        "DM Mono",
        monospace;

    font-size: 8px;

    letter-spacing: .15em;

    cursor:
        pointer;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .pitch-header {

        height: 75px;

        padding:
            0 20px;

    }


    .pitch-counter,
    .pitch-hud {

        display: none;

    }


    .pitch-opening {

        min-height:
            700px;

    }


    .pitch-opening-meta {

        top: 100px;

        left: 20px;

        right: 20px;

    }


    .pitch-opening-title {

        width: 95vw;

    }


    .pitch-opening-title span {

        font-size:
            27vw;

    }


    .pitch-opening-title span:nth-child(2) {

        margin-left:
            10vw;

    }


    .pitch-opening-title .pitch-outline {

        margin-left:
            5vw;

    }


    .pitch-viewfinder {

        inset:
            20vh 20px;

    }


    .pitch-opening-copy {

        left: 20px;

        bottom: 70px;

    }


    .pitch-opening-scroll {

        right: 20px;

        bottom: 70px;

    }


    .pitch-opening-scroll span:first-child {

        display: none;

    }


    .pitch-form-section {

        padding:
            100px 20px;

    }


    .pitch-form-intro {

        margin-bottom:
            80px;

    }


    .pitch-form-intro h2 {

        font-size:
            22vw;

    }


    .pitch-form-step {

        display: block;

        padding:
            70px 0;

    }


    .pitch-step-number {

        margin-bottom:
            25px;

    }


    .pitch-step-heading h3 {

        font-size:
            12vw;

    }


    .pitch-fields {

        grid-template-columns:
            1fr;

    }


    .pitch-field-full {

        grid-column:
            auto;

    }


    .pitch-choice-grid,
    .pitch-emotion-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .pitch-submit-section {

        display: block;

        padding-top:
            80px;

    }


    .pitch-submit-button {

        width: 100%;

        margin-top: 40px;

    }


    .pitch-final {

        min-height:
            70vh;

    }


    .pitch-final h2 {

        font-size:
            22vw;

    }


    .pitch-final-frame {

        inset:
            15vh 20px;

    }


    .pitch-final-meta {

        left: 20px;

        right: 20px;

    }


    .pitch-menu-overlay {

        padding:
            100px 25px;

    }


    .pitch-menu-overlay nav a {

        font-size:
            48px;

    }

}