@font-face {
    font-family: "Helvetica Neue";
    src: url("fonts/HelveticaNeue-Thin.otf") format("opentype");
    font-weight: 100 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("fonts/HelveticaNeue-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("fonts/HelveticaNeue-Roman.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("fonts/HelveticaNeue-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("fonts/HelveticaNeue-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #0E0E0E;
    --panel: #0E0E0E;
    --text: #FFFFFF;
    --muted: #A0A0A0;
    --line: #2A2A2A;
    --accent: #E9713B;
    --accent-darker: #cf5f2e;
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.wrap {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background: var(--panel);
    border-radius: var(--radius);
    overflow: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    padding: 20px;
}

.media {
    position: relative;
    background: #000;
    overflow: hidden
}

.media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 40px;
    background: #0c0c0c
}

.inner {
    width: 100%;
    max-width: 520px
}

.brand img {
    height: 60px;
    display: block;
    margin-bottom: 24px
}

.tagline {
    margin: 0 0 32px 0;
    font-family: "Helvetica Neue", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}

.sub {
    margin: 16px 0 40px 0;
    font-family: "Helvetica Neue", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}


.headline {
    margin: 48px 0 0 0;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
}


.section-title {
    margin: 48px 0 20px 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 26px
}

form {
    display: grid;
    gap: 40px
}

.field {
    width: 100%;
    border: 1px solid #9B9B9B;
    background: #0b0b0b;
    color: var(--text);
    padding: 16px 14px;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.field::placeholder {
    color: #7b7b7b;
    font-weight: 600
}

.field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(233, 113, 59, .15)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 286px;
    height: 72px;
    padding: 21px 66px;
    background: #D35B30;
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: transform .06s ease, background .15s ease;
    letter-spacing: 0;
    text-align: center;
}

.btn:hover {
    background: #b94923
}

.btn:active {
    transform: translateY(1px)
}

.mobile-header {
    display: none
}

@media (max-width:1000px) {
    .wrap {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding: 16px;
    }

    .mobile-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 0 8px;
    }

    .mobile-header .brand img {
        height: 50px;
        margin: 0 0 12px 0;
    }

    .mobile-header .tagline {
        margin: 0 0 16px 0;
        font-size: 14px;
        color: #cfcfcf;
    }

    .panel .brand,
    .panel .tagline {
        display: none !important;
    }

    .media {
        order: 2;
        height: 50vh;
        min-height: 320px;
        margin: 8px 0;
        position: relative;
    }

    .media video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
    }

    .panel {
        order: 3;
        padding: 24px 16px;
    }

    .headline {
        font-size: 34px;
    }

    .section-title {
        font-size: 22px;
    }

    form {
        gap: 16px;
    }

    .btn {
        width: 100%;
        height: 56px;
        font-size: 20px;
        padding: 0;
    }
}

@media (max-width:640px) {
    .wrap {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding: 16px;
    }

    .mobile-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 0 8px;
    }

    .mobile-header .brand img {
        height: 50px;
        margin: 0 0 12px 0;
    }

    .mobile-header .tagline {
        margin: 0 0 16px 0;
        font-size: 14px;
        color: #cfcfcf;
    }

    .panel .brand,
    .panel .tagline {
        display: none !important
    }

    .media {
        order: 2;
        height: 50vh;
        min-height: 320px;
        margin: 8px 0;
    }

    .media video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
    }

    .panel {
        order: 3;
        padding: 24px 16px
    }

    .headline {
        font-size: 34px
    }

    .section-title {
        font-size: 22px
    }

    form {
        gap: 16px
    }

    .btn {
        width: 100%;
        height: 56px;
        font-size: 20px;
        padding: 0
    }
}