:root {
    --test-green: #81bb26;
    --test-charcoal: #4e5158;
    --test-grey: #908e91;
    --test-dark-grey: #646367;
    --field-background: #232323;
    --field-panel: #363739;
    --field-border: rgba(255,255,255,.12);
    --white: #ffffff;
    --muted: #b8b9bc;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    background: var(--field-background);
    color: var(--white);
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.field-header {
    background: var(--test-charcoal);
    border-bottom: 3px solid var(--test-green);
}

.field-header-inner {
    width: min(1080px, calc(100% - 40px));
    height: 82px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.field-logo {
    width: 155px;
    height: auto;
    display: block;
}

.field-product {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.field-main {
    width: min(1080px, calc(100% - 40px));
    margin: auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 0;
}

.field-content {
    width: min(620px, 100%);
}

.field-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--test-green);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.field-eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    background: var(--test-green);
}

.field-card {
    background: var(--field-panel);
    border: 1px solid var(--field-border);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.field-title {
    margin: 0;
    font-size: clamp(38px, 7vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.035em;
}

.field-title-small {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.field-green {
    color: var(--test-green);
}

.field-lead {
    margin: 20px 0 0;
    color: #d5d5d6;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 200;
}

.field-muted {
    color: var(--muted);
    font-size: 13px;
    font-weight: 200;
}

.field-location-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--test-green);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 15px;
}

.field-address {
    margin: 24px 0;
    color: #d7d7d8;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 200;
}

.field-address strong {
    color: var(--white);
    font-weight: 600;
}

.field-button {
    display: block;
    width: 100%;
    margin-top: 25px;
    padding: 15px 20px;
    border: 0;
    border-radius: 8px;
    background: var(--test-green);
    color: #1f1f1f;
    text-align: center;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.field-button:disabled {
    background: var(--test-dark-grey);
    color: #d4d4d4;
    cursor: not-allowed;
}

.field-divider {
    height: 1px;
    background: var(--field-border);
    margin: 24px 0;
}

.field-reference {
    color: var(--test-grey);
    font-size: 11px;
    font-weight: 200;
}

.field-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #d5d5d6;
    font-size: 12px;
}

.field-service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--test-green);
}

.field-footer {
    width: min(1080px, calc(100% - 40px));
    margin: auto;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--test-grey);
    font-size: 11px;
    font-weight: 200;
}

.field-footer strong {
    color: var(--white);
    font-weight: 200;
}

.field-footer .green {
    color: var(--test-green);
}

@media (max-width: 600px) {
    .field-header-inner {
        width: calc(100% - 32px);
        height: 72px;
    }

    .field-logo {
        width: 130px;
    }

    .field-product {
        font-size: 10px;
    }

    .field-main {
        width: calc(100% - 32px);
        padding: 35px 0;
        align-items: flex-start;
    }

    .field-card {
        padding: 23px;
    }

    .field-title-small {
        font-size: 25px;
    }

    .field-footer {
        width: calc(100% - 32px);
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}
