*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #080808;
    --text: #f7f8f8;
    --muted: #8a8f98;
    --muted-dim: #62666d;
    --line: rgba(255, 255, 255, 0.1);
    --line-soft: rgba(255, 255, 255, 0.06);
    --hover: rgba(255, 255, 255, 0.03);
    --pill-bg: rgba(255, 255, 255, 0.04);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --maxw: 1200px;
    --pad: 40px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

section {
    border-top: 1px solid var(--line);
}

nav.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.brand {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 14px;
    color: var(--muted);
    transition: color 0.15s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ghost {
    font-size: 14px;
    color: var(--muted);
    padding: 8px 12px;
    transition: color 0.15s ease;
}

.ghost:hover {
    color: var(--text);
}

.pill-btn {
    font-size: 14px;
    font-weight: 500;
    background: var(--text);
    color: #08090a;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.pill-btn:hover {
    opacity: 0.85;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text);
    position: relative;
}

.nav-toggle span::before {
    position: absolute;
    top: -6px;
}

.nav-toggle span::after {
    position: absolute;
    top: 6px;
}

.hero {
    padding-top: 200px;
    padding-bottom: 140px;
    border-top: none;
}

h1.hero-title {
    font-weight: 800;
    font-size: 88px;
    line-height: 1.0;
    letter-spacing: -3px;
    max-width: 14ch;
}

.hero-sub {
    margin-top: 32px;
    font-size: 20px;
    color: var(--muted);
    max-width: 46ch;
    letter-spacing: -0.3px;
}

.hero-ctas {
    margin-top: 44px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-primary {
    font-size: 15px;
    font-weight: 500;
    background: var(--text);
    color: #08090a;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.cta-primary:hover {
    opacity: 0.85;
}

.cta-secondary {
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    color: var(--text);
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: var(--hover);
}

.recognition {
    padding: 40px 0;
}

.recognition .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px 48px;
}

.recognition span {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted-dim);
    letter-spacing: 0.2px;
}

.row2 {
    padding: 120px 0;
}

.row2 .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.row2 h2 {
    font-weight: 800;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -2px;
    align-self: start;
}

.row2 .body p {
    font-size: 18px;
    color: var(--muted);
    letter-spacing: -0.2px;
}

.row2 .body p+p {
    margin-top: 20px;
}

.stats .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-left: 0;
    padding-right: 0;
}

.stats {
    padding: 0;
}

.stat {
    padding: 64px var(--pad);
    border-left: 1px solid var(--line);
}

.stat:first-child {
    border-left: none;
}

.stat .num {
    font-weight: 800;
    font-size: 52px;
    letter-spacing: -2px;
    line-height: 1;
}

.stat .label {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
}

.verticals {
    padding: 120px 0;
}

.verticals h2 {
    font-weight: 800;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -2px;
    max-width: 16ch;
}

.verticals .lede {
    margin-top: 24px;
    font-size: 18px;
    color: var(--muted);
    max-width: 52ch;
}

.pills {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill {
    font-size: 15px;
    color: var(--muted);
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--pill-bg);
    transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.pill:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.people {
    padding: 120px 0;
}

.people .intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.people .intro h2 {
    font-weight: 800;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -2px;
}

.people .intro .body p {
    font-size: 18px;
    color: var(--muted);
}

.people .intro .body p+p {
    margin-top: 20px;
}

.people-grid {
    margin-top: 96px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 64px;
}

.people-grid h3 {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}

.people-grid p {
    font-size: 16px;
    color: var(--muted);
}

.jobs {
    padding: 120px 0;
}

.jobs h2 {
    font-weight: 800;
    font-size: 88px;
    line-height: 1;
    letter-spacing: -3px;
}

.filters {
    margin-top: 48px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.28);
}

.filter.active {
    background: var(--text);
    color: #08090a;
    border-color: var(--text);
}

.job-list {
    margin-top: 40px;
    border-top: 1px solid var(--line);
}

.job-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 16px;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.job-row:hover {
    background: var(--hover);
    padding-left: 28px;
}

.job-info .title {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.job-meta {
    margin-top: 8px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.job-meta span {
    font-size: 13px;
    color: var(--muted);
}

.job-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.type-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 12px;
    white-space: nowrap;
}

.apply-btn {
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 18px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.apply-btn:hover {
    background: var(--text);
    color: #08090a;
    border-color: var(--text);
}

.job-row.hidden {
    display: none;
}

.job-empty {
    padding: 28px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 17px;
    line-height: 1.5;
}

.open-app {
    padding: 120px 0;
}

.open-app .wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.open-app h2 {
    font-weight: 800;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.open-app p {
    margin-top: 16px;
    font-size: 18px;
    color: var(--muted);
    max-width: 46ch;
}

footer {
    border-top: 1px solid var(--line);
    padding: 40px 0;
}

footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

footer span {
    font-size: 14px;
    color: var(--muted-dim);
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.overlay.open {
    display: flex;
}

.modal {
    background: #111111;
    border: 1px solid var(--line);
    border-radius: 14px;
    width: 100%;
    max-width: 560px;
    padding: 36px;
}

.modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.modal-head h3 {
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -1px;
}

.modal-head .role-sub {
    margin-top: 6px;
    font-size: 14px;
    color: var(--muted);
}

.modal-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: -10px -10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.15s ease;
}

.modal-close:hover {
    color: var(--text);
}

.field {
    margin-bottom: 18px;
}

.opt {
    color: rgba(255, 255, 255, 0.32);
    font-size: 12px;
    font-weight: 400;
    margin-left: 4px;
}

.q-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 4px 0 24px;
    overflow: hidden;
}

.q-bar-fill {
    height: 100%;
    background: var(--text);
    width: 0;
    transition: width 0.25s ease;
}

.q-helper {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.q-count {
    color: rgba(255, 255, 255, 0.32);
    font-size: 12px;
    font-weight: 400;
    margin-top: 8px;
}

.q-actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-top: 20px;
}

.q-back {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    padding: 13px 20px;
    font: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.q-back:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.4);
}

.q-back[disabled] {
    opacity: 0.35;
    cursor: default;
}

.q-actions .modal-submit {
    width: auto;
    flex: 1;
    margin-top: 0;
    white-space: nowrap;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

label {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

input,
select,
textarea {
    width: 100%;
    background: #0b0b0b;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    padding: 11px 12px;
    transition: border-color 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.35);
}

textarea {
    resize: vertical;
    min-height: 96px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8f98' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.field.invalid input,
.field.invalid textarea {
    border-color: #d0453f;
}

.err {
    display: none;
    margin-top: 6px;
    font-size: 12px;
    color: #e06c66;
}

.field.invalid .err {
    display: block;
}

.modal-submit {
    width: 100%;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 500;
    background: var(--text);
    color: #08090a;
    border: none;
    border-radius: 999px;
    padding: 13px;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.modal-submit:hover {
    opacity: 0.85;
}

.success {
    text-align: center;
    padding: 24px 12px 12px;
}

.success .check {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--text);
    color: #08090a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 30px;
}

.success h3 {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}

.success p {
    font-size: 15px;
    color: var(--muted);
    max-width: 34ch;
    margin: 0 auto;
}

@media (max-width: 900px) {
    :root {
        --pad: 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
        width: 44px;
        height: 44px;
    }

    .nav-right .ghost {
        display: none;
    }

    .nav-right .pill-btn {
        display: none;
    }

    .brand {
        display: flex;
        align-items: center;
        min-height: 44px;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        transform: none;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        padding: 8px var(--pad) 12px;
        gap: 0;
    }

    .nav-links.open a {
        display: flex;
        align-items: center;
        min-height: 44px;
    }

    .cta-primary,
    .cta-secondary {
        min-height: 44px;
        padding: 13px 22px;
    }

    .filter,
    .apply-btn {
        min-height: 44px;
        padding: 11px 18px;
    }

    .modal-submit {
        min-height: 44px;
    }

    input,
    select {
        min-height: 44px;
    }

    h1.hero-title {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 90px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .row2 {
        padding: 72px 0;
    }

    .row2 .wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .row2 h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .stats .wrap {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        border-left: none;
        border-top: 1px solid var(--line);
    }

    .stat:first-child,
    .stat:nth-child(2) {
        border-top: none;
    }

    .stat {
        padding: 40px var(--pad);
    }

    .verticals,
    .people,
    .jobs,
    .open-app {
        padding: 72px 0;
    }

    .verticals h2,
    .people .intro h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .people .intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .people-grid {
        grid-template-columns: 1fr;
        margin-top: 56px;
        gap: 40px;
    }

    .jobs h2 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .job-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .job-row:hover {
        padding-left: 16px;
    }

    .open-app .wrap {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .open-app h2 {
        font-size: 32px;
    }

    .modal {
        padding: 24px;
    }

    .field-row {
        grid-template-columns: 1fr;
    }
}