/* Basic modern, responsive styles */
:root{
  --bg:#0f172a;
  --text:#111827;
  --muted:#4b5563;
  --brand:#2563eb;
  --surface:#ffffff;
  --surface-2:#f3f4f6;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:#fff;}

.container{max-width:1100px;margin:0 auto;padding:20px;}

.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid #e5e7eb;z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;}
.brand{display:flex;align-items:center;gap:12px;}
.logo{width:40px;height:40px;border-radius:10px;background:var(--brand);color:#fff;display:grid;place-items:center;font-weight:700}
.brand-text h1{font-size:18px;margin:0}
.brand-text .tagline{margin:0;color:var(--muted);font-size:12px}
.nav a{margin-left:16px;color:#111827;text-decoration:none;font-weight:600}
.nav a:hover{color:var(--brand)}

.hero{background:linear-gradient(180deg,#f8fafc,#fff);border-bottom:1px solid #e5e7eb}
.hero h2{font-size:28px;margin:0 0 8px}
.hero p{color:var(--muted);margin:0}

.jobs .job-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px;margin-top:16px}
.job-card{border:1px solid #e5e7eb;border-radius:14px;padding:18px;background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.03)}
.job-card h3{margin:0 0 6px;font-size:18px}
.job-card p{margin:4px 0;color:#374151}
.job-card a{color:var(--brand);text-decoration:none}
.job-card a:hover{text-decoration:underline}
.badge{display:inline-block;padding:2px 8px;border-radius:999px;border:1px solid #d1d5db;font-size:12px;margin-right:6px}
.note{font-size:12px;color:#6b7280;margin-top:6px}
.no-jobs{padding:16px;background:#f9fafb;border:1px dashed #d1d5db;border-radius:12px;margin-top:8px;text-align:center}

.confidence{background:var(--surface-2);border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb}
.confidence .lead{color:#374151;max-width:760px}
.bullet{padding-left:18px}
.bullet li{margin:6px 0}

.faqs details{border:1px solid #e5e7eb;border-radius:12px;padding:14px;margin:10px 0;background:#fff}
.faqs summary{cursor:pointer;font-weight:600}
.small-note{color:#6b7280;font-size:12px}

.site-footer{background:#0b1220;color:#e5e7eb;margin-top:40px}
.site-footer h3{color:#fff}
.site-footer a{color:#c7d2fe}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px}
.legal{display:flex;justify-content:space-between;align-items:center;border-top:1px solid #172038;margin-top:16px;padding-top:12px;font-size:14px}

.btn{display:inline-block;padding:10px 14px;border-radius:10px;background:var(--brand);color:#fff;text-decoration:none;font-weight:600}
.btn.secondary{background:#10b981}

@media (max-width:640px){
  .nav{display:none}
}
