/* Real Job Check - civic-trust verification aesthetic
   paper + ink + verification green, forensic evidence motif.
   House rule: no em or en dashes anywhere. */

:root {
  --paper:#FBF9F4; --paper-2:#F4F1E8; --panel:#FFFFFF;
  --ink:#15212E; --ink-2:#3E4C59; --ink-3:#5F6975;
  --line:#E7E1D4; --line-2:#D8D0BF;

  --brand:#0E7A5F; --brand-2:#0A5C47; --brand-tint:#E6F1EC;
  --safe:#1B8A55; --safe-bg:#E9F4ED; --safe-line:#BFE3CC;
  --caution:#A9650A; --caution-bg:#FAF0DB; --caution-line:#E9D2A1;
  --risk:#C0392B; --risk-bg:#FBE9E6; --risk-line:#F0C1BA;

  --shadow-sm:0 1px 2px rgba(21,33,46,.06), 0 1px 1px rgba(21,33,46,.04);
  --shadow-md:0 6px 22px rgba(21,33,46,.08), 0 2px 6px rgba(21,33,46,.05);
  --shadow-lg:0 24px 60px rgba(21,33,46,.14), 0 6px 16px rgba(21,33,46,.07);

  --radius:14px; --radius-sm:10px; --maxw:1080px;
  --font-display:"Bricolage Grotesque", Georgia, sans-serif;
  --font-body:"Public Sans", system-ui, -apple-system, sans-serif;
  --font-mono:"IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--font-body); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  background-image:
    radial-gradient(1200px 600px at 78% -8%, rgba(14,122,95,.07), transparent 60%),
    radial-gradient(900px 500px at -5% 8%, rgba(21,33,46,.05), transparent 55%);
}
/* subtle paper grain */
body::before {
  content:""; position:fixed; inset:0; pointer-events:none; z-index:0; opacity:.35;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}
main, .site-head, .site-foot { position:relative; z-index:1; }

h1,h2,h3 { font-family:var(--font-display); font-weight:700; line-height:1.08; letter-spacing:-.02em; margin:0; }
a { color:var(--brand-2); text-decoration:none; }
a:hover { text-decoration:underline; }
p { margin:0 0 1em; }

.wrap { max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.wrap-narrow { max-width:720px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.skip { position:absolute; left:-999px; top:0; background:var(--ink); color:#fff; padding:10px 16px; border-radius:0 0 8px 0; z-index:50; }
.skip:focus { left:0; }
.gotcha { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* header */
.site-head { display:flex; align-items:center; justify-content:space-between; gap:20px; max-width:1180px; margin:0 auto; padding:20px 24px; }
.brand { display:inline-flex; align-items:center; gap:10px; color:var(--ink); font-family:var(--font-display); }
.brand:hover { text-decoration:none; }
.brand-mark { display:grid; place-items:center; width:34px; height:34px; background:var(--brand); border-radius:9px; box-shadow:var(--shadow-sm); }
.brand-mark svg { color:#fff; }
.brand-name { font-weight:800; font-size:20px; letter-spacing:-.02em; }
.brand-name-2 { color:var(--brand); }
.site-nav { display:flex; align-items:center; gap:26px; font-size:15px; font-weight:500; }
.site-nav a { color:var(--ink-2); }
.nav-cta { background:var(--ink); color:#fff !important; padding:9px 16px; border-radius:9px; }
.nav-cta:hover { background:var(--brand-2); text-decoration:none; }

/* hero */
.hero { position:relative; overflow:hidden; padding:48px 0 24px; }
.hero-inner { max-width:780px; margin:0 auto; padding:0 24px; text-align:center; }
.eyebrow { font-family:var(--font-mono); font-size:13px; letter-spacing:.04em; color:var(--brand-2); text-transform:uppercase; margin:0 0 14px; }
.hero-title { font-size:clamp(44px,7vw,76px); font-weight:800; }
.hero-sub { font-size:clamp(17px,2.3vw,21px); color:var(--ink-2); max-width:620px; margin:18px auto 30px; }
.hero-bg { position:absolute; inset:0; z-index:-1;
  background-image:radial-gradient(circle at 1px 1px, rgba(21,33,46,.05) 1px, transparent 0); background-size:22px 22px;
  mask-image:radial-gradient(60% 60% at 50% 30%, #000, transparent 75%); }

/* checker */
.checker { max-width:680px; margin:0 auto; text-align:left; }
#job-input {
  width:100%; resize:vertical; min-height:128px; padding:18px 18px; font-family:var(--font-body);
  font-size:16px; color:var(--ink); background:var(--panel); border:1.5px solid var(--line-2);
  border-radius:var(--radius); box-shadow:var(--shadow-md); transition:border-color .15s, box-shadow .15s;
}
#job-input::placeholder { color:var(--ink-3); }
#job-input:focus { outline:none; border-color:var(--brand); box-shadow:0 0 0 4px var(--brand-tint), var(--shadow-md); }
.checker-row { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-top:14px; }
.checker-note { font-size:14px; color:var(--ink-3); }
.checker-consent { margin:12px 0 0; font-size:13px; color:var(--ink-3); line-height:1.5; }
.checker-consent a { color:var(--brand-2); text-decoration:underline; }
.checker-hint { margin:10px 0 0; font-size:14px; color:var(--risk); font-weight:500; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; font-family:var(--font-body); font-weight:600;
  font-size:16px; padding:14px 26px; border-radius:11px; border:1.5px solid transparent; cursor:pointer; transition:transform .08s ease, background .15s, box-shadow .15s; }
.btn:active { transform:translateY(1px); }
.btn-primary { background:var(--brand); color:#fff; box-shadow:var(--shadow-md); }
.btn-primary:hover { background:var(--brand-2); text-decoration:none; }
.btn-primary[disabled] { opacity:.7; cursor:progress; }
.btn-ghost { background:transparent; color:var(--ink); border-color:var(--line-2); }
.btn-ghost:hover { border-color:var(--ink); text-decoration:none; }

.examples { display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin-top:18px; font-size:14px; color:var(--ink-3); }
.chip { font-family:var(--font-body); font-size:13.5px; color:var(--ink-2); background:var(--paper-2); border:1px solid var(--line-2);
  padding:6px 12px; border-radius:999px; cursor:pointer; transition:background .15s, border-color .15s; }
.chip:hover { background:#fff; border-color:var(--brand); color:var(--brand-2); }

/* result card */
.result { max-width:680px; margin:26px auto 0; animation:rise .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes rise { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:none; } }
.verdict { background:var(--panel); border:1.5px solid var(--line-2); border-radius:18px; box-shadow:var(--shadow-lg); overflow:hidden; text-align:left; }
.verdict-head { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 24px; border-bottom:1px solid var(--line);
  background:var(--paper-2); }
.verdict-badge { display:inline-flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:800; letter-spacing:.02em;
  font-size:20px; padding:8px 16px; border-radius:10px; border:2px solid; transform:rotate(-1.5deg); }
.verdict--risk .verdict-badge { color:var(--risk); border-color:var(--risk); background:var(--risk-bg); }
.verdict--caution .verdict-badge { color:var(--caution); border-color:var(--caution); background:var(--caution-bg); }
.verdict--safe .verdict-badge { color:var(--safe); border-color:var(--safe); background:var(--safe-bg); }
.verdict-score { text-align:right; font-family:var(--font-mono); }
.score-num { font-size:30px; font-weight:500; color:var(--ink); }
.score-max { font-size:13px; color:var(--ink-3); display:block; letter-spacing:.02em; }
.verdict-summary { font-size:18px; color:var(--ink); padding:20px 24px 4px; margin:0; }
.verdict-summary strong { color:inherit; }
.verdict-ai { margin:6px 24px 2px; padding:12px 16px; color:var(--ink-2); font-size:15.5px; background:var(--brand-tint); border-left:3px solid var(--brand); border-radius:0 10px 10px 0; }
.verdict-ai strong { color:var(--brand-2); }
.ev--muted .ev-dot { background:#9aa4ad; }

.verdict-evidence, .verdict-action { padding:8px 24px 20px; }
.verdict-evidence h4, .verdict-action h4 { font-family:var(--font-body); font-weight:600; font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-3); margin:14px 0 12px; }
.evidence { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.ev { display:flex; gap:12px; align-items:flex-start; padding:12px 14px; border:1px solid var(--line); border-radius:11px; background:var(--paper); }
.ev-dot { width:10px; height:10px; border-radius:50%; margin-top:7px; flex:none; }
.ev--bad .ev-dot { background:var(--risk); } .ev--warn .ev-dot { background:var(--caution); } .ev--good .ev-dot { background:var(--safe); }
.ev-body { display:flex; flex-direction:column; gap:3px; }
.ev-claim { font-weight:600; color:var(--ink); }
.ev-detail { font-family:var(--font-mono); font-size:13px; color:var(--ink-2); }
.ev-detail a { color:var(--brand-2); }

.verdict-action { border-top:1px dashed var(--line-2); }
.action--report h4 { color:var(--risk); }
.action--apply h4 { color:var(--safe); }
.action-list { margin:0 0 14px; padding-left:20px; }
.action-list li { margin-bottom:7px; }
.action-cta { display:flex; flex-wrap:wrap; gap:10px; }
.apply-row { display:flex; flex-direction:column; gap:8px; margin:2px 0 16px; padding:14px 16px; background:var(--brand-tint); border:1px solid var(--safe-line); border-radius:var(--radius-sm); }
.apply-official { align-self:flex-start; }
.apply-note { font-size:13.5px; color:var(--ink-2); }
.verdict-foot { font-size:12.5px; color:var(--ink-3); padding:0 24px 18px; margin:0; }

/* analyzing state */
.analyzing { display:flex; align-items:center; gap:14px; justify-content:center; padding:30px; background:var(--panel);
  border:1.5px solid var(--line-2); border-radius:18px; box-shadow:var(--shadow-md); font-family:var(--font-mono); color:var(--ink-2); font-size:14px; }
.spinner { width:18px; height:18px; border:2.5px solid var(--brand-tint); border-top-color:var(--brand); border-radius:50%; animation:spin .8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

/* bands */
.band { padding:72px 0; border-top:1px solid var(--line); }
.band-soft { background:var(--paper-2); }
.band-ink { background:var(--ink); color:#E9EEF2; border-top:none; }
.band-ink .section-lead { color:#AEB9C4; }
.section-title { font-size:clamp(28px,4vw,40px); margin-bottom:14px; }
.band-ink .section-title { color:#fff; }
.section-lead { font-size:18px; color:var(--ink-2); max-width:680px; margin-bottom:36px; }

/* content pages (privacy, terms, contact) */
.prose { max-width:720px; }
.prose h1 { font-size:clamp(30px,5vw,44px); margin-bottom:8px; }
.prose .updated { color:var(--ink-3); font-family:var(--font-mono); font-size:13px; margin-bottom:28px; }
.prose h2 { font-size:21px; margin:30px 0 10px; }
.prose p, .prose li { color:var(--ink-2); }
.prose ul { padding-left:20px; }
.prose li { margin-bottom:7px; }

/* steps */
.steps { list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; counter-reset:s; }
.steps li { background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px; box-shadow:var(--shadow-sm); }
.step-n { font-family:var(--font-mono); font-size:14px; color:var(--brand); letter-spacing:.05em; }
.steps h3 { font-size:22px; margin:10px 0 8px; }
.steps p { color:var(--ink-2); margin:0; }

/* stats */
.stats { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.stat { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius); padding:26px 22px; }
.stat-num { font-family:var(--font-display); font-weight:800; font-size:42px; color:#fff; display:block; letter-spacing:-.02em; }
.stat-label { display:block; color:#C2CCD5; font-size:15px; margin:8px 0 12px; }
.stat-src { font-family:var(--font-mono); font-size:12px; color:#8fb9ac !important; }

/* what we check */
.grid-checks { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.check-card { background:var(--panel); border:1px solid var(--line); border-radius:var(--radius); padding:24px; box-shadow:var(--shadow-sm); }
.check-card h3 { font-size:19px; margin-bottom:8px; }
.check-card p { color:var(--ink-2); margin:0; font-size:15.5px; }

/* pricing */
.plans { display:grid; grid-template-columns:repeat(2,minmax(0,360px)); gap:22px; justify-content:center; }
.plan { position:relative; background:var(--panel); border:1.5px solid var(--line-2); border-radius:var(--radius); padding:28px; box-shadow:var(--shadow-sm); }
.plan-feature { border-color:var(--brand); box-shadow:var(--shadow-md); }
.plan-tag { position:absolute; top:-12px; left:24px; background:var(--brand); color:#fff; font-size:12px; font-weight:600; padding:4px 12px; border-radius:999px; }
.plan h3 { font-size:22px; }
.plan-price { font-family:var(--font-display); font-weight:800; font-size:40px; margin:6px 0 16px; }
.plan-price span { font-size:16px; font-weight:500; color:var(--ink-3); }
.plan ul { list-style:none; margin:0 0 22px; padding:0; }
.plan li { padding:8px 0 8px 26px; position:relative; color:var(--ink-2); border-top:1px solid var(--line); }
.plan li:first-child { border-top:none; }
.plan li::before { content:"✓"; position:absolute; left:0; color:var(--brand); font-weight:700; }
.plan .btn { width:100%; }
.plan-foot { text-align:center; color:var(--ink-3); font-size:15px; margin-top:22px; }

/* faq */
details { border:1px solid var(--line); border-radius:var(--radius-sm); padding:0 18px; margin-bottom:12px; background:var(--panel); }
summary { cursor:pointer; font-weight:600; padding:16px 0; list-style:none; display:flex; justify-content:space-between; align-items:center; }
summary::after { content:"+"; color:var(--brand); font-size:22px; font-weight:400; }
details[open] summary::after { content:"\00D7"; } /* close icon (multiplication sign), no dashes */
details[open] summary { border-bottom:1px solid var(--line); }
details p { color:var(--ink-2); padding:14px 0; margin:0; }

/* footer */
.site-foot { background:var(--paper-2); border-top:1px solid var(--line); padding:48px 0 36px; margin-top:0; }
.foot-grid { display:flex; justify-content:space-between; gap:30px; flex-wrap:wrap; padding-bottom:26px; border-bottom:1px solid var(--line); }
.foot-brand { font-size:22px; }
.foot-tag { color:var(--ink-3); font-family:var(--font-mono); font-size:14px; margin:6px 0 0; }
.site-foot nav { display:flex; flex-wrap:wrap; gap:20px; font-size:15px; }
.site-foot nav a { color:var(--ink-2); }
.foot-legal { padding-top:22px; }
.disclaimer { font-size:13.5px; color:var(--ink-3); max-width:760px; }
.foot-legal p:last-child, .foot-copy { font-size:14px; color:var(--ink-3); margin:0; }
.foot-links { margin-top:14px; font-size:14px; color:var(--ink-3); line-height:1.95; }
.foot-links a { color:var(--ink-2); }
/* content-page tables */
.prose table { width:100%; border-collapse:collapse; margin:18px 0 24px; font-size:15px; }
.prose th, .prose td { text-align:left; padding:10px 12px; border-bottom:1px solid var(--line); vertical-align:top; }
.prose thead th { font-family:var(--font-body); color:var(--ink); font-weight:600; border-bottom:2px solid var(--line-2); }
.prose td { color:var(--ink-2); }
/* contact form */
.contact-form { max-width:580px; margin:6px 0 30px; }
.field { margin-bottom:16px; display:flex; flex-direction:column; gap:6px; }
.field label { font-weight:600; font-size:15px; color:var(--ink); }
.field input, .field select, .field textarea { font-family:var(--font-body); font-size:16px; color:var(--ink); background:var(--panel); border:1.5px solid var(--line-2); border-radius:var(--radius-sm); padding:11px 13px; width:100%; }
.field textarea { resize:vertical; min-height:130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--brand); box-shadow:0 0 0 3px var(--brand-tint); }
.contact-row { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-top:4px; }
.cf-status { margin:16px 0 0; padding:12px 15px; border-radius:var(--radius-sm); font-size:15px; }
.cf-status.ok { background:var(--safe-bg); color:var(--safe); border:1px solid var(--safe-line); }
.cf-status.err { background:var(--risk-bg); color:var(--risk); border:1px solid var(--risk-line); }

/* responsive */
@media (max-width:820px) {
  .site-head { flex-wrap:wrap; row-gap:14px; }
  .site-nav { width:100%; justify-content:center; flex-wrap:wrap; gap:12px 18px; font-size:14px; }
  .steps, .stats, .grid-checks { grid-template-columns:1fr; }
  .plans { grid-template-columns:1fr; }
  .band { padding:54px 0; }
}
@media (max-width:430px) {
  .site-nav { gap:10px 14px; font-size:13.5px; }
  .nav-cta { padding:8px 14px; }
}
@media (prefers-reduced-motion:reduce) { * { animation:none !important; scroll-behavior:auto; } }
