/* Recent Jobs+ marketing: editorial layout, single accent (fonts loaded in HTML) */

:root {
    --bg: #f7f7f8;
    --bg-elevated: #ffffff;
    --text: #0c0c0e;
    --text-secondary: #52525b;
    --text-tertiary: #71717a;
    --border: #e4e4e7;
    --border-strong: #d4d4d8;
    --accent: #0a66c2;
    --accent-hover: #004182;
    --accent-soft: rgba(10, 102, 194, 0.08);
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 40px -16px rgba(0, 0, 0, 0.12);
    --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
    --prose-width: 38rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.skip {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip:focus {
    left: 16px;
    top: 16px;
    padding: 10px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
}

/* Nav */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 247, 248, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.site-nav-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.03em;
    color: var(--text);
    text-decoration: none;
}

.brand:hover {
    text-decoration: none;
    opacity: 0.88;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(145deg, #0a66c2 0%, #004182 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 8px 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-group a.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-group a.nav-link:hover {
    color: var(--text);
    text-decoration: none;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.15s;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.btn-primary:hover {
    background: #27272a;
    border-color: #27272a;
    color: #fff;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(10, 102, 194, 0.25);
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-secondary:hover {
    border-color: #a1a1aa;
    background: #fff;
}

/* Hero */
.hero {
    padding: 56px 0 88px;
}

@media (min-width: 768px) {
    .hero {
        padding: 72px 0 104px;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 18px;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(2.125rem, 4.8vw, 3.125rem);
    font-weight: 700;
    letter-spacing: -0.042em;
    line-height: 1.07;
    max-width: 14ch;
    color: var(--text);
}

.hero-sub {
    margin: 0 0 32px;
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 36rem;
    font-weight: 450;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.hero-trust {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.5;
    max-width: 34rem;
}

.hero-trust strong {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Sections */
.section {
    padding: 72px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 88px 0;
    }
}

.section-head {
    margin-bottom: 44px;
    max-width: 32rem;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 10px;
}

.section h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text);
}

.section-lead {
    margin: 14px 0 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: border-color 0.2s, box-shadow 0.25s;
}

.feature-card:hover {
    border-color: #d4d4d8;
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}

.feature-card p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}

@media (max-width: 800px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

.step {
    position: relative;
    padding-left: 48px;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.step p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* FAQ */
.faq {
    max-width: 720px;
}

.faq details {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq summary {
    padding: 16px 18px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq details[open] summary {
    border-bottom: 1px solid var(--border);
}

.faq .faq-a {
    padding: 14px 18px 18px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq .faq-a p {
    margin: 0;
}

/* CTA strip */
.cta-strip {
    padding: 56px 0 80px;
}

.cta-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-box > p {
    margin: 0 0 22px;
    color: var(--text-secondary);
    font-size: 0.98rem;
}

/* Footer */
.site-footer {
    padding: 36px 0 48px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.site-footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
}

.site-footer p {
    margin: 0;
    font-size: 13px;
    color: var(--text-tertiary);
}

.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.site-footer .footer-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

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

/* Privacy page */
body.page-privacy {
    background: var(--bg);
}

.privacy-main {
    padding: 40px 0 96px;
}

.privacy-header {
    max-width: var(--prose-width);
    margin-bottom: 36px;
}

.privacy-header h1 {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.privacy-header .lead {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.privacy-header .meta {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.prose-article {
    max-width: var(--prose-width);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px 28px;
    box-shadow: var(--shadow);
}

.prose-article h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin: 28px 0 12px;
    letter-spacing: -0.02em;
}

.prose-article h2:first-child {
    margin-top: 0;
}

.prose-article p,
.prose-article ul {
    margin: 0 0 16px;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.prose-article ul {
    padding-left: 1.2rem;
}

.prose-article li {
    margin-bottom: 8px;
}

.prose-article strong {
    color: var(--text);
    font-weight: 600;
}

.prose-note {
    margin-top: 20px;
    padding: 14px 16px;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-tertiary);
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border);
}

.contact-card {
    max-width: var(--prose-width);
    margin-top: 24px;
    padding: 24px 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-card h2 {
    margin: 0 0 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.contact-card p {
    margin: 0 0 8px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.back-row {
    margin-top: 36px;
    font-size: 0.9375rem;
}
