:root {
    --bg: #f6f3ee;
    --bg-alt: #fffdf9;
    --ink: #14181f;
    --muted: #5b6472;
    --line: #e4ddd2;
    --navy: #0f2744;
    --navy-2: #16365c;
    --teal: #0f766e;
    --teal-2: #115e59;
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Mona Sans";
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.15; margin: 0 0 0.6em; }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin: 0 0 0.5em; }
h3 { font-size: 1.15rem; margin: 0 0 0.4em; }
p { margin: 0 0 1em; color: var(--muted); }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.legal { padding-bottom: 48px; }
.legal h2 { font-size: 1.25rem; margin: 1.75em 0 0.45em; color: var(--navy); }
.legal .meta { font-size: 0.92rem; margin-bottom: 1.5em; }
.legal ul { color: var(--muted); padding-left: 1.2em; margin: 0 0 1em; }
.legal li { margin: 0.4em 0; }
.skip-link {
    position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 8px 12px;
}
.skip-link:focus { left: 8px; }

.site-header {
    background: rgba(246, 243, 238, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    display: flex; align-items: center; gap: 18px; min-height: 76px;
    width: calc(100% - 40px); max-width: none;
}
.logo { display: flex; align-items: center; gap: 10px; color: inherit; font-weight: 600; }
.logo:hover { text-decoration: none; }
.logo img { height: 36px; width: 36px; display: block; border-radius: 8px; }
.site-nav { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.site-nav a { color: var(--ink); font-size: 0.94rem; font-weight: 500; }
.site-nav a.is-active { color: var(--teal); }
.nav-toggle { display: none; }
.header-end {
    display: flex; align-items: center; gap: 18px; margin-left: auto;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 18px; border-radius: 999px; border: 1px solid transparent;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.header-cta { white-space: nowrap; }

.hero {
    padding: 40px 0 28px;
    background:
        radial-gradient(1000px 280px at 80% -10%, rgba(15, 118, 110, 0.16), transparent),
        radial-gradient(700px 240px at 0% 0%, rgba(201, 162, 39, 0.14), transparent);
}
.hero-content { text-align: center; max-width: 760px; margin: 0 auto; }
.hero p.lead { font-size: 1.15rem; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 8px; justify-content: center; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.stat {
    background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 16px;
}
.stat strong { display: block; font-size: 1.4rem; color: var(--navy); }

section { padding: 28px 0; }
.hero + section,
.page-hero + section { padding-top: 16px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px;
}
.card h3 { color: var(--navy); }
.badge {
    display: inline-block; background: #e7f4f2; color: var(--teal-2);
    border-radius: 999px; padding: 4px 10px; font-size: 0.78rem; font-weight: 700;
    margin-bottom: 10px;
}
.page-hero { padding: 36px 0 0; }
.page-hero p:last-child { margin-bottom: 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--bg-alt); border-radius: 16px; overflow: hidden; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
th { background: var(--navy); color: #fff; }
.job-meta { font-size: 0.88rem; color: var(--muted); }

form { display: grid; gap: 14px; }
label { font-weight: 600; font-size: 0.92rem; }
label:has(input[type="checkbox"]) {
    display: flex; gap: 10px; align-items: flex-start; font-weight: 500; color: var(--muted);
}
input[type="checkbox"] { width: auto; margin-top: 5px; flex-shrink: 0; }
input, select, textarea {
    width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
    font: inherit; background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.alert {
    padding: 14px 16px; border-radius: 12px; margin-bottom: 16px;
    background: #ecfdf5; border: 1px solid #99f6e4; color: #115e59;
}
.faq details {
    background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px;
    padding: 14px 18px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy); }
.faq p { margin-top: 10px; }

.site-footer {
    background: var(--navy); color: #c9d6e5; padding: 48px 0 20px;
}
.site-footer a { color: #e8eef6; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 28px; }
.site-footer h3 { color: #fff; font-size: 0.95rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.88rem;
}
.footer-bottom a { margin-right: 14px; }

.hire-hero { text-align: center; }
.hire-wrap { width: min(960px, calc(100% - 40px)); margin: 0 auto; }
.hire-hero .lead { font-size: 1.12rem; max-width: 62ch; margin-left: auto; margin-right: auto; }
.hire-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; text-align: left; }
.pay-rate { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); margin: 0 0 0.25em; line-height: 1.1; }
.pay-card-featured { border-color: var(--teal); background: #e7f4f2; }
.hire-note { font-size: 0.9rem; margin-top: 16px; }
.hire-cta { padding: 48px 0 56px; }
.hire-cta-inner { text-align: center; background: var(--navy); color: #d7e3ef; border-radius: 24px; padding: 40px 28px; }
.hire-cta-inner h2 { color: #fff; }
.hire-cta-inner p { color: #c9d6e5; max-width: 46ch; margin-left: auto; margin-right: auto; }
.hire-cta-inner .btn-primary { background: #fff; color: var(--navy); }
.hire-apply-list {
    list-style: none; padding: 0; margin: 0 auto 22px; max-width: 28ch; text-align: left; color: #c9d6e5;
}
.hire-apply-list li { margin: 8px 0; padding-left: 1.2em; position: relative; }
.hire-apply-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: #7dd3c7; }

@media (max-width: 900px) {
    .grid-3, .grid-2, .footer-grid, .form-row, .hire-facts { grid-template-columns: 1fr; }
    .nav-toggle {
        display: inline-flex; margin-left: auto; background: #fff; border: 1px solid var(--line);
        border-radius: 999px; padding: 8px 14px;
    }
    .site-nav {
        display: none; width: 100%; flex-direction: column; padding-bottom: 16px;
    }
    .site-nav.is-open { display: flex; }
    .header-cta { display: none; }
    .header-end { width: 100%; margin-left: 0; }
    .nav-wrap { flex-wrap: wrap; }
}
