/*
Theme Name: ProveFit
Theme URI: https://provefit.app
Author: 25 Fathoms, LLC
Author URI: https://provefit.app
Description: Custom marketing theme for ProveFit — see your resume the way the recruiter will, before you hit submit. The candidate-side sibling to Resume Credibility. Built for provefit.app (root); the app lives at app.provefit.app.
Version: 1.5
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary — 25 Fathoms, LLC
Text Domain: prove-fit
*/

/* ============================================================
   ProveFit brand tokens + all styles. Classes only, no inline CSS.
   Palette and type per ProveFit_Brand_Guide_v1.
   ============================================================ */

:root {
  --ink: #14263B;
  --ink-soft: #2A3F57;
  --green: #12A66A;
  --green-deep: #0E7A50;
  --green-tint: #E4F5EC;
  --coral: #FF7A59;
  --coral-tint: #FFEDE7;
  --amber: #E8912D;
  --amber-tint: #FBEEDD;
  --red: #C0392B;
  --red-tint: #F7E4E1;
  --paper: #FBFAF6;
  --card: #FFFFFF;
  --line: #EAE6DC;
  --line-soft: #F1EEE6;
  --text: #33404C;
  --muted: #6E757D;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --radius: 14px;
  --wrap: 1080px;
  --wrap-narrow: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); margin: 0; font-weight: 600; text-wrap: balance; }
p { margin: 0 0 16px; }
a { color: var(--green-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 12px; }
.center { text-align: center; }

/* ---------- Header / nav ---------- */
.site-header { border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; gap: 20px; max-width: var(--wrap); margin: 0 auto; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand:hover { text-decoration: none; }
.brand-word { font-family: var(--serif); font-weight: 600; font-size: 23px; color: var(--ink); letter-spacing: -0.02em; }
.brand-word .fit { color: var(--green); }
.nav-menu { display: flex; align-items: center; gap: 22px; margin-left: auto; list-style: none; padding: 0; }
.nav-menu a { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.nav-menu a:hover { color: var(--green-deep); text-decoration: none; }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; cursor: pointer; font-size: 16px; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 700; font-size: 15px; border-radius: 10px; padding: 12px 22px; border: 1px solid transparent; cursor: pointer; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--green-deep); color: #fff; }
.btn-primary:hover { background: #0B6242; color: #fff; }
.btn-secondary { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--green); color: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--green-deep); }
.btn-lg { font-size: 16px; padding: 14px 26px; }
.btn-on-ink { background: var(--green); color: #fff; }
.btn-on-ink:hover { background: #15B978; color: #fff; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-tight { padding: 44px 0; }
.section-ink { background: var(--ink); color: #E7EEF4; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-tint { background: var(--green-tint); }
.section-head { max-width: 64ch; margin: 0 auto 40px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: 34px; line-height: 1.1; letter-spacing: -0.01em; }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 19px; }
.section-ink .section-head p { color: #C6D3DE; }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 56px; }
.hero-inner { max-width: 42ch; }
.hero h1 { font-size: 52px; line-height: 1.05; letter-spacing: -0.02em; }
.hero .lead { font-family: var(--serif); font-size: 22px; color: var(--ink-soft); margin-top: 20px; max-width: 30ch; line-height: 1.4; }
.hero .promise { font-family: var(--mono); font-size: 14px; color: var(--muted); margin-top: 18px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .cta-row { margin-top: 28px; }
.cta-row.centered { justify-content: center; }
.cta-note { font-family: var(--mono); font-size: 13px; color: var(--muted); margin: 14px 0 0; }
.cta-row.centered + .cta-note { text-align: center; }
.section-ink .cta-note { color: #A9BAC9; }

/* small layout utilities (kept out of inline styles) */
.mt-lg { margin-top: 34px; }
.mt-sm { margin-top: 14px; }
.h2-30 { font-size: 30px; }
.callout-sub { max-width: 56ch; margin: 22px auto 0; text-align: center; color: #C6D3DE; }

/* ---------- Stat / problem band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.stat .n { font-family: var(--serif); font-weight: 600; font-size: 40px; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.stat .t { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.5; }

/* ---------- Feature / step grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.feature .mark { margin-bottom: 16px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--text); margin: 0; }

.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.step .num { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--green-deep); background: var(--green-tint); border-radius: 100px; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text); margin: 0; }

/* ---------- Differentiator / callout ---------- */
.callout { max-width: 46ch; margin: 0 auto; text-align: center; }
.callout .big { font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--ink); line-height: 1.3; }
.section-ink .callout .big { color: #fff; }
.rule-card { background: var(--card); border: 1px solid #BFE6D2; border-left: 4px solid var(--green); border-radius: var(--radius); padding: 26px 28px; max-width: 60ch; margin: 0 auto; }
.rule-card h3 { font-size: 15px; font-family: var(--sans); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-deep); margin-bottom: 10px; }
.rule-card p { margin: 0; color: var(--ink); font-size: 16px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: 32px; }
.cta-band p { color: #C6D3DE; font-size: 18px; margin: 12px auto 24px; max-width: 48ch; }

/* ---------- Prose (legal + long content) ---------- */
.prose { max-width: var(--wrap-narrow); margin: 0 auto; }
.prose h1 { font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 10px; }
.prose .updated { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 30px; }
.prose h2 { font-size: 23px; margin: 34px 0 12px; }
/* Anchor jumps (e.g. the footer "Do Not Sell or Share" link) land below the sticky header */
.prose h1, .prose h2, .prose h3, :target { scroll-margin-top: 100px; }
/* When logged in, the WordPress admin bar adds ~32px at the top; offset for it too */
.admin-bar .prose h1, .admin-bar .prose h2, .admin-bar .prose h3, .admin-bar :target { scroll-margin-top: 132px; }
.prose h3 { font-size: 18px; font-family: var(--sans); font-weight: 700; margin: 22px 0 8px; }
.prose p { font-size: 16px; color: var(--text); }
.prose ul { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; font-size: 16px; }
.prose .note-box { background: var(--amber-tint); border: 1px solid #EAD3AE; border-radius: 10px; padding: 14px 18px; font-size: 14px; color: #7A5212; margin-bottom: 26px; }

/* ---------- Sample report showcase (mirrors the app report) ---------- */
.report { max-width: 900px; margin: 0 auto; }
.report-head { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; background: var(--ink); border-radius: var(--radius); padding: 26px 28px; }
.readiness-badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 800; font-size: 16px; border-radius: 100px; padding: 9px 18px; }
.readiness-badge .dot { width: 11px; height: 11px; border-radius: 50%; }
.rb-tighten { background: var(--amber-tint); color: #9A5B10; } .rb-tighten .dot { background: var(--amber); }
.readiness-why { color: #D7E1EA; font-family: var(--serif); font-size: 18px; line-height: 1.4; flex: 1 1 280px; margin: 0; }
.score-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; margin-top: 16px; }
.score-card, .subscore-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; }
.score-big { font-family: var(--serif); font-weight: 600; font-size: 46px; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.score-cap { font-family: var(--mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }
.subscore { margin-bottom: 12px; } .subscore:last-child { margin-bottom: 0; }
.subscore .sl { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink); margin-bottom: 5px; }
.subscore .sl b { font-family: var(--mono); color: var(--muted); font-weight: 500; }
.meter-track { background: var(--line-soft); border-radius: 100px; overflow: hidden; height: 8px; display: block; }
.rep-section { margin-top: 26px; }
.rep-section > h3 { font-size: 20px; letter-spacing: -0.01em; }
.rep-section > .sub { font-size: 14px; color: var(--muted); margin-top: 4px; margin-bottom: 14px; }
.cov { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--card); }
.cov-item { display: grid; grid-template-columns: 130px 1fr; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); }
.cov-item:last-child { border-bottom: none; }
.cov-status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--sans); font-weight: 700; font-size: 12.5px; height: fit-content; }
.cov-status .d { width: 9px; height: 9px; border-radius: 50%; }
.st-covered { color: var(--green-deep); } .st-covered .d { background: var(--green); }
.st-partial { color: #9A5B10; } .st-partial .d { background: var(--amber); }
.st-unproven { color: var(--muted); } .st-unproven .d { background: var(--muted); }
.cov-req { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.cov-ev { font-family: var(--mono); font-size: 12.5px; color: var(--muted); margin-top: 5px; line-height: 1.5; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split-col { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; background: var(--card); }
.split-col h4 { font-size: 14px; font-family: var(--sans); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.split-col.prove h4 { color: var(--green-deep); }
.split-col.assert h4 { color: #9A5B10; }
.split-item { padding: 10px 0; border-top: 1px solid var(--line-soft); font-size: 14px; }
.split-item:first-of-type { border-top: none; }
.split-item .q { font-family: var(--mono); font-size: 13px; color: var(--ink); }
.split-item .why { color: var(--muted); font-size: 13px; margin-top: 4px; }
.fix { background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: 12px; padding: 18px 20px; margin-bottom: 14px; }
.fix-quote { font-family: var(--mono); font-size: 13.5px; color: var(--ink); line-height: 1.55; }
.fix-gap { font-size: 14px; color: var(--text); margin-top: 10px; }
.fix-prove { font-size: 14.5px; color: var(--green-deep); font-weight: 600; margin-top: 8px; }
.fix-prove::before { content: "→ Prove it: "; font-family: var(--mono); font-weight: 500; color: var(--green); }
.pri { display: inline-block; font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 100px; margin-bottom: 10px; }
.pri-high { background: var(--red-tint); color: #8E2318; }
.pri-medium { background: var(--amber-tint); color: #9A5B10; }
.integrity { margin-top: 26px; background: var(--green-tint); border: 1px solid #BFE6D2; border-radius: 12px; padding: 16px 20px; font-size: 14px; color: var(--ink); }

/* Keyword read + recruiter questions (mirrors the app report) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 4px; }
.kw { font-family: var(--mono); font-size: 12.5px; border-radius: 100px; padding: 5px 11px; }
.kw-have { background: var(--green-tint); color: var(--green-deep); }
.kw-maybe { background: var(--paper); color: var(--ink); border: 1px dashed var(--line); }
.kw-label { font-family: var(--sans); font-weight: 700; font-size: 13px; color: var(--ink); margin: 14px 0 4px; }
.qlist { margin: 0; padding-left: 20px; }
.qlist li { margin-bottom: 8px; font-size: 14.5px; }

/* Cover letter read (mirrors the app report) */
.clread { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; }
.cl-grasp { display: inline-block; font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: 0.02em; border-radius: 100px; padding: 7px 14px; margin-bottom: 12px; }
.cl-strong, .cl-adequate { background: var(--green-tint); color: var(--green-deep); }
.cl-moderate { background: var(--amber-tint); color: #9A5B10; }
.cl-weak { background: var(--red-tint); color: #8E2318; }
.cl-note { font-size: 15px; color: var(--text); margin: 0 0 14px; }
.cl-line { font-size: 14px; color: var(--text); padding: 10px 0; border-top: 1px solid var(--line-soft); }
.cl-line b { display: block; font-family: var(--sans); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 3px; }

/* ---------- Pilot / universities cards ---------- */
.pilot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pilot-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.pilot-card h3 { font-size: 19px; margin-bottom: 14px; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 15px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 9px; border-left: 3px solid var(--green); border-bottom: 3px solid var(--green); transform: rotate(-45deg); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0 52px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: flex-start; justify-content: space-between; }
.footer-brand { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); }
.footer-brand .fit { color: var(--green); }
.footer-tag { font-family: var(--serif); font-size: 15px; color: var(--ink-soft); margin: 8px 0 0; max-width: 34ch; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 4px 0 0; max-width: 540px; justify-content: flex-end; }
.footer-legal a { font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.footer-legal a:hover { color: var(--green-deep); }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.footer-legalline { font-family: var(--mono); font-size: 12px; color: var(--muted); margin: 0; line-height: 1.7; }
.footer-fine { font-family: var(--mono); font-size: 12px; color: var(--muted); margin: 6px 0 0; line-height: 1.7; }
@media (max-width: 720px) { .footer-legal { justify-content: flex-start; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .split, .pilot-grid, .score-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero h1 { font-size: 38px; }
  .section-head h2 { font-size: 27px; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 16px; }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; padding: 8px 0; }
  .nav-cta { margin-left: 0; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .cov-item { grid-template-columns: 1fr; gap: 6px; }
}
