:root {
    --ink: #050608;
    --ink-soft: #0d1018;
    --paper: #fff;
    --primary: #216ff3;
    --primary-600: #185bcf;
    --line: rgba(255, 255, 255, .11);
    --muted: rgba(255, 255, 255, .62);
    --display: "Space Grotesk", sans-serif;
    --body: "Inter", sans-serif;
    --mono: "IBM Plex Mono", monospace;
    --wrap: 1180px;
    --ease: cubic-bezier(.16, .84, .44, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--ink);
    color: #fff;
    font-family: var(--body);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

body.menu-open,
body.modal-open {
    overflow: hidden
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea,
select {
    font: inherit
}

button {
    cursor: pointer
}

img,
svg {
    display: block;
    max-width: 100%
}

h1,
h2,
h3,
h4,
p {
    margin: 0
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    letter-spacing: -.035em;
    line-height: 1.03
}

.wrap {
    width: min(calc(100% - 56px), var(--wrap));
    margin-inline: auto
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: transform .18s var(--ease), background .18s, border-color .18s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    background: var(--primary-600)
}

.btn-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .035);
    color: #fff
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .3)
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 500;
    padding-top: 18px
}

.site-header .wrap {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(5, 6, 8, .48);
    backdrop-filter: blur(18px)
}

.logo {
    display: flex;
    align-items: center
}

.logo-mark {
    width: 100px;
    height: 50px;
    background: url('/logos/1transparent/1_white.png') center/contain no-repeat
}

.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav a,
.header-home {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    font-weight: 600
}

.main-nav a:hover,
.header-home:hover {
    color: #fff
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    padding: 9px
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 4px auto;
    border-radius: 99px
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 700;
    opacity: 0;
    pointer-events: none;
    background: rgba(5, 6, 8, .98);
    transition: opacity .25s
}

.mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto
}

.mobile-panel {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 24px
}

.mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mobile-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.mobile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.mobile-label,
.eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #6ea1ff
}

.mobile-content ul {
    list-style: none;
    margin: 16px 0 28px;
    padding: 0
}

.mobile-content a:not(.btn) {
    display: block;
    padding: 10px 0;
    font-family: var(--display);
    font-size: clamp(36px, 10vw, 52px);
    font-weight: 600
}

.mobile-actions {
    display: grid;
    gap: 10px
}

.hero {
    position: relative;
    min-height: 92svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 148px 0 92px;
    background: radial-gradient(circle at 48% 0%, rgba(45, 82, 222, .62), transparent 34%), radial-gradient(circle at 92% 8%, rgba(24, 43, 132, .42), transparent 32%), linear-gradient(180deg, #142060 0%, #0b123a 30%, #050608 82%)
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .014) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(#000, transparent 82%)
}

.hero-inner {
    position: relative;
    text-align: center;
    max-width: 900px
}

.hero .eyebrow {
    justify-content: center;
    margin-bottom: 24px
}

.hero h1 {
    font-size: clamp(52px, 7.3vw, 92px);
    font-weight: 600;
    text-wrap: balance
}

.hero p {
    max-width: 720px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
    text-wrap: balance
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px
}

.hero-note {
    margin-top: 22px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, .44) !important
}

.roles {
    padding: 110px 0 130px;
    background: #050608
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
    gap: 60px;
    align-items: end;
    margin-bottom: 54px
}

.section-head h2 {
    font-size: clamp(36px, 4.8vw, 58px);
    font-weight: 600
}

.section-head p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7
}

.jobs {
    border-top: 1px solid var(--line)
}

.job {
    display: grid;
    grid-template-columns: 1.25fr .75fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px 4px;
    border-bottom: 1px solid var(--line);
    transition: background .2s, padding .2s
}

.job:hover {
    background: rgba(255, 255, 255, .025);
}

.job h3 {
    font-size: clamp(23px, 2.7vw, 34px);
    font-weight: 600
}

.job p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    max-width: 650px
}

.job-meta {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.pill {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px
}

.job-actions {
    display: flex;
    gap: 9px
}

.icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: #fff;
    display: grid;
    place-items: center;
    transition: .2s
}

.icon-btn:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .3)
}

.details {
    display: none;
    grid-column: 1/-1;
    padding: 28px 0 6px;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    animation: fade .25s ease
}

.job.is-open .details {
    display: grid
}

.details h4 {
    font-size: 15px;
    letter-spacing: -.01em;
    margin-bottom: 12px
}

.details ul {
    margin: 0;
    padding-left: 19px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75
}

.details li+li {
    margin-top: 5px
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(8px)
    }
}

.culture {
    padding: 120px 0;
    background: #fff;
    color: #0a0b0d
}

.culture-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: start
}

.culture h2 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 600
}

.culture-copy>p {
    margin-top: 22px;
    color: #565a63;
    font-size: 17px;
    line-height: 1.7
}

.values {
    display: grid;
    gap: 14px
}

.value {
    padding: 25px;
    border: 1px solid #e6e8ee;
    border-radius: 18px;
    background: #fafbfc
}

.value strong {
    display: block;
    font-family: var(--display);
    font-size: 18px
}

.value span {
    display: block;
    margin-top: 7px;
    color: #686d77;
    font-size: 14px;
    line-height: 1.6
}

.footer-backdrop {
    background: #fff;
    padding: 0 0 24px
}

.site-footer {
    margin: 0 20px;
    padding: 64px 50px 25px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(180deg, #11131a, #050608);
    color: #fff
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 42px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line)
}

.footer-brand p {
    max-width: 300px;
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px
}

.footer-col h4 {
    font-family: var(--body);
    font-size: 12px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 18px
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px
}

.footer-col a {
    color: rgba(255, 255, 255, .74);
    font-size: 14px
}

.footer-col a:hover {
    color: #fff
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 24px;
    color: rgba(255, 255, 255, .38);
    font-size: 12px
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    background: rgba(2, 3, 6, .78);
    backdrop-filter: blur(10px);
    transition: opacity .22s
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto
}

.modal-card {
    width: min(100%, 860px);
    max-height: calc(100svh - 36px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: radial-gradient(circle at 15% 0%, rgba(33, 111, 243, .2), transparent 35%), #090b10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .55)
}

.modal-head {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    padding: 26px 28px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 11, 16, .88);
    backdrop-filter: blur(16px)
}

.modal-head h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 600
}

.modal-head p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px
}

.modal-close {
    width: 42px;
    height: 42px;
    flex: none;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    display: grid;
    place-items: center
}

.form {
    padding: 28px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px
}

.field {
    display: grid;
    gap: 7px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .72)
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
    outline: none
}

.field textarea {
    min-height: 116px;
    resize: vertical
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(33, 111, 243, .1)
}

.field select option {
    background: #0b0d12
}

.hint {
    font-size: 11px;
    color: rgba(255, 255, 255, .38)
}

.upload {
    position: relative;
    padding: 24px 18px;
    border: 1px dashed rgba(255, 255, 255, .22);
    border-radius: 14px;
    text-align: center;
    background: rgba(255, 255, 255, .025);
    transition: .2s
}

.upload:hover,
.upload.drag {
    border-color: var(--primary);
    background: rgba(33, 111, 243, .06)
}

.upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer
}

.upload strong {
    display: block;
    font-size: 14px
}

.upload span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .44);
    font-size: 12px
}

.form-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px
}

.privacy-note {
    max-width: 500px;
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
    line-height: 1.55
}

.status {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px
}

.status.show {
    display: block
}

.status.error {
    color: #ffb4ac;
    background: rgba(255, 84, 73, .08);
    border: 1px solid rgba(255, 84, 73, .2)
}

.status.success {
    color: #a8f0bd;
    background: rgba(71, 201, 111, .08);
    border: 1px solid rgba(71, 201, 111, .2)
}

@media(max-width:860px) {
    .wrap {
        width: min(calc(100% - 36px), var(--wrap))
    }

    .main-nav,
    .header-home,
    .header-actions>.btn {
        display: none
    }

    .nav-toggle {
        display: block
    }

    .hero {
        min-height: auto;
        padding: 138px 0 94px
    }

    .section-head,
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .job {
        grid-template-columns: 1fr auto
    }

    .job-meta {
        grid-column: 1/-1
    }

    .job-actions {
        grid-column: 2;
        grid-row: 1
    }

    .details {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .field.full {
        grid-column: auto
    }

    .form-foot {
        align-items: stretch;
        flex-direction: column
    }

    .form-foot .btn {
        width: 100%
    }
}

@media(max-width:560px) {
    .site-header .wrap {
        width: calc(100% - 24px);
        height: 58px;
        padding-left: 14px
    }

    .logo-mark {
        width: 86px;
        height: 42px
    }

    .hero h1 {
        font-size: 45px
    }

    .roles,
    .culture {
        padding: 84px 0
    }

    .job {
        padding: 25px 2px;
        gap: 14px
    }

    .job-actions .btn {
        display: none
    }

    .site-footer {
        margin: 0 10px;
        padding: 48px 24px 23px
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .modal {
        padding: 0
    }

    .modal-card {
        max-height: 100svh;
        border-radius: 0
    }

    .modal-head,
    .form {
        padding-left: 20px;
        padding-right: 20px
    }
}