@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --ink: #f4f7f5;
    --bg: #030604;
    --panel: #0c110e;
    --panel-2: #111713;
    --green: #20c66b;
    --green-dark: #0c4f2d;
    --muted: #a5afa8;
    --line: #1c2820;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Inter,Arial,sans-serif;
}

a {
    color: inherit;
}

.site-header {
    height: 70px;
    max-width: 1280px;
    margin: auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1.5px;
    text-decoration: none;
}

    .brand span {
        color: var(--green);
    }

.site-header nav {
    display: flex;
    gap: 25px;
}

    .site-header nav a {
        color: #d9e0db;
        font-size: .72rem;
        font-weight: 600;
        text-decoration: none;
    }

        .site-header nav a:hover {
            color: var(--green);
        }

.content {
    max-width: 1280px;
    margin: auto;
    padding: 0 32px 80px;
}

.hero {
    min-height: 445px;
    padding: 80px 9%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 74% 45%,rgba(12,92,47,.34),transparent 35%),linear-gradient(110deg,#030604 40%,#07120c);
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 630px;
}

.hero h1, .job-header h1, .empty-state h1 {
    margin: 15px 0 20px;
    font-size: clamp(2.45rem,5vw,4.5rem);
    line-height: 1.08;
    letter-spacing: -3.5px;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 550px;
    color: #bdc8c0;
    line-height: 1.75;
    font-size: .9rem;
}

.hero-mark {
    position: absolute;
    right: 7%;
    color: rgba(32,198,107,.1);
    font-size: 500px;
    font-weight: 800;
    line-height: 1;
}

.eyebrow {
    margin: 0;
    color: var(--green);
    font: 500 .68rem 'JetBrains Mono',monospace;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.button {
    display: inline-block;
    margin-top: 24px;
    padding: 13px 19px;
    border: 0;
    background: var(--green);
    color: #021009;
    font-size: .74rem;
    font-weight: 800;
    text-decoration: none;
}

    .button:hover {
        background: #4bd987;
    }

.button-light {
    background: var(--green);
}

.intro {
    max-width: 850px;
    padding: 100px 0 82px;
}

    .intro h2, .offers-section h2, .job-content h2 {
        margin: 14px 0 18px;
        font-size: clamp(1.8rem,3.5vw,2.85rem);
        line-height: 1.15;
        letter-spacing: -2px;
    }

    .intro > p:last-child {
        color: var(--muted);
        line-height: 1.85;
        font-size: .9rem;
    }

.offers-section {
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 34px;
}

    .section-heading h2 {
        margin-bottom: 0;
    }

.offer-count {
    color: var(--muted);
    font: 500 .72rem 'JetBrains Mono',monospace;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.offer-card {
    min-height: 280px;
    padding: 25px;
    background: var(--panel);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: border-color .2s,transform .2s;
}

    .offer-card:hover {
        border-color: #287747;
        transform: translateY(-3px);
    }

.offer-card-top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: #94a99b;
    font: 500 .65rem 'JetBrains Mono',monospace;
    text-transform: uppercase;
}

.offer-card h3 {
    margin: 42px 0 12px;
    color: #f0f5f1;
    font-size: 1.2rem;
    letter-spacing: -.7px;
}

.offer-card p {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.7;
}

.text-link, .back-link {
    color: var(--green);
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link {
    margin-top: auto;
}

.status-message {
    padding: 38px 0;
    color: var(--muted);
}

.error-message, .form-error, .validation-message {
    color: #ff8f82;
}

.back-link {
    display: inline-block;
    margin: 38px 0 55px;
}

.job-header {
    padding-bottom: 55px;
    border-bottom: 1px solid var(--line);
}

.job-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .job-facts span {
        padding: 7px 10px;
        color: #81e3a8;
        background: #0d2115;
        font: 500 .66rem 'JetBrains Mono',monospace;
    }

.job-content {
    padding: 55px 0;
}

.job-content-layout {
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0,1fr) 450px;
    gap: 80px;
    align-items: start;
}

.rich-text {
    color: #f6f6f6;
    line-height: 1.85;
    font-size: .9rem;
}

    .rich-text p {
        margin: 0 0 1.15rem;
    }

    .rich-text ul, .rich-text ol {
        margin: .2rem 0 1.3rem;
        padding-left: 1.45rem;
    }

    .rich-text li {
        margin: .2rem 0;
    }

    .rich-text strong, .rich-text b {
        color: #fff;
    }

    .rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4 {
        color: #fff;
        font-size: 1.05rem;
        margin: 1.7rem 0 .65rem;
    }

    .rich-text a {
        color: var(--green);
    }

.empty-state {
    max-width: 720px;
    padding: 120px 0;
}

.job-application, .application-form {
    padding: 25px;
    border: 1px solid #203226;
    background: var(--panel);
}

.job-application {
    position: sticky;
    top: 24px;
}

    .job-application h2, .application-form h2 {
        margin: 0 0 8px;
        font-size: 1.4rem;
    }

    .job-application > p, .application-summary-copy {
        color: var(--muted);
        font-size: .83rem;
        line-height: 1.65;
    }

    .job-application label, .application-form label {
        display: block;
        margin: 13px 0;
        color: #dce5df;
        font-size: .72rem;
        font-weight: 700;
    }

        .job-application label span, .application-form label span {
            color: var(--muted);
            font-weight: 400;
        }

    .job-application input, .application-form input, .application-form textarea {
        display: block;
        width: 100%;
        margin-top: 5px;
        padding: 10px;
        border: 1px solid #2b3c31;
        background: #080d0a;
        color: var(--ink);
        font: inherit;
    }

.job-file, .file-input {
    position: relative;
    padding: 13px;
    border: 1px dashed #40754f;
    background: #0a1810;
}

    .job-file input, .file-input input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }

    .job-file strong, .file-input strong {
        display: block;
        margin-top: 6px;
        color: #78d89c;
        font-size: .74rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.job-application .button {
    cursor: pointer;
}

    .job-application .button:disabled, .application-form .button:disabled {
        opacity: .6;
    }

.application-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 9%;
    padding-bottom: 80px;
}

.application-summary {
    padding-top: 16px;
}

    .application-summary h1 {
        font-size: 2.25rem;
        letter-spacing: -1.7px;
    }

.application-form textarea {
    min-height: 105px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width:760px) {
    .site-header, .content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-header {
        height: 62px;
    }

        .site-header nav {
            gap: 15px;
        }

    .hero {
        min-height: 400px;
        padding: 45px 30px;
    }

        .hero h1, .job-header h1, .empty-state h1 {
            letter-spacing: -2px;
        }

    .hero-mark {
        display: none;
    }

    .intro {
        padding: 70px 0 60px;
    }

    .offers-grid, .job-content-layout, .application-layout {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }

    .job-content-layout {
        gap: 30px;
    }

    .job-application {
        position: static;
    }

    .application-form {
        padding: 22px 17px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.job-application textarea { display:block; width:100%; min-height:100px; margin-top:5px; padding:10px; border:1px solid #2b3c31; background:#080d0a; color:var(--ink); font:inherit; resize:vertical; }
