/* MyJobVerse — marketing site
   Light, minimal, professional (Meta-style). Single static page. */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-soft: #eef2f9;
  --ink: #0b1220;
  --ink-2: #1c1e21;
  --muted: #5b6472;
  --line: #e4e7ec;
  --brand: #2f6bff;
  --brand-dark: #1544c2;
  --brand-soft: #eaf0ff;
  --green: #12a150;
  --green-soft: #e8f6ee;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow: 0 8px 30px rgba(16, 24, 40, .08);
  --maxw: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
.lead { font-size: 1.15rem; color: var(--muted); }
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
}
.eyebrow.green { color: var(--green); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin-top: 14px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .95rem; padding: 12px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: all .18s ease; white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-green:hover { filter: brightness(.94); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: #c9ced8; background: var(--bg-alt); }
.btn-ghost { color: var(--brand); padding: 12px 8px; }
.btn-ghost:hover { color: var(--brand-dark); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; }
.brand .mark { width: 30px; height: 30px; }
.brand b { color: var(--brand); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: .93rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-ctas { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* Hero */
.hero { padding: 84px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 50% -10%, rgba(47,107,255,.10), transparent 70%);
}
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  color: var(--brand); background: var(--brand-soft); padding: 7px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { max-width: 880px; margin: 0 auto; }
.hero .lead { max-width: 620px; margin: 20px auto 0; font-size: 1.22rem; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* Stat bar */
.statbar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 860px; margin: 64px auto 0; padding: 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.stat { text-align: center; }
.stat .num { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; }
.stat .label { font-size: .82rem; color: var(--muted); margin-top: 2px; }

/* Audience split */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.aud-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s;
}
.aud-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.aud-card .tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.aud-card.employer .tag { color: var(--brand); background: var(--brand-soft); }
.aud-card.worker .tag { color: var(--green); background: var(--green-soft); }
.aud-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.aud-card p { color: var(--muted); margin-bottom: 24px; }
.steps { list-style: none; display: grid; gap: 16px; margin-bottom: 30px; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.steps .n {
  flex: none; width: 28px; height: 28px; border-radius: 8px; font-size: .85rem; font-weight: 700;
  display: grid; place-items: center; color: #fff;
}
.aud-card.employer .steps .n { background: var(--brand); }
.aud-card.worker .steps .n { background: var(--green); }
.steps .t strong { display: block; font-size: .98rem; color: var(--ink); }
.steps .t span { font-size: .9rem; color: var(--muted); }

/* Industries */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ind {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 18px; text-align: left; transition: border-color .18s, transform .18s;
}
.ind:hover { border-color: var(--brand); transform: translateY(-2px); }
.ind .ic { font-size: 1.5rem; margin-bottom: 10px; }
.ind .nm { font-weight: 600; font-size: .95rem; }
.ind .ct { font-size: .8rem; color: var(--muted); margin-top: 2px; }

/* Feature row */
.feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.feature .art {
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  border: 1px solid var(--line); border-radius: var(--radius-lg); min-height: 320px;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.feature .art .phone {
  width: 190px; height: 300px; background: #fff; border: 1px solid var(--line); border-radius: 26px;
  box-shadow: var(--shadow); padding: 14px; display: grid; gap: 10px; align-content: start;
}
.feature .art .bar { height: 12px; border-radius: 6px; background: var(--bg-soft); }
.feature .art .bar.brand { background: var(--brand); width: 60%; }
.feature .art .bar.g { background: var(--green); width: 45%; }
.checklist { list-style: none; display: grid; gap: 14px; margin-top: 24px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.checklist .ck { color: var(--green); flex: none; margin-top: 3px; }
.checklist b { color: var(--ink); }

/* Stat counters (hyperlocal) */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; margin-top: 8px; }
.counter { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; letter-spacing: -.02em; color: var(--brand); font-variant-numeric: tabular-nums; }
.counter.green { color: var(--green); }
.stat-cap { font-size: .9rem; color: var(--muted); margin-top: 6px; }
.hyper-note {
  max-width: 640px; margin: 40px auto 0; text-align: center; color: var(--muted);
  font-size: .98rem; padding: 18px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.hyper-note b { color: var(--ink); }

/* Testimonials */
.tgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-sm);
}
.tcard .stars { color: #f5a623; letter-spacing: 3px; font-size: .85rem; margin-bottom: 16px; }
.tcard blockquote { font-size: 1.08rem; line-height: 1.6; color: var(--ink); margin-bottom: 22px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .9rem; flex: none; }
.tcard .who .nm { font-weight: 600; font-size: .93rem; color: var(--ink); }
.tcard .who .rl { font-size: .82rem; color: var(--muted); }

/* CTA band */
.cta-band { text-align: center; }
.cta-inner {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff;
  border-radius: var(--radius-lg); padding: 64px 32px;
}
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,.85); max-width: 520px; margin: 14px auto 30px; }
.cta-inner .btn-primary { background: #fff; color: var(--brand-dark); }
.cta-inner .btn-primary:hover { background: #eef2ff; }
.cta-inner .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cta-inner .btn-outline:hover { background: rgba(255,255,255,.1); }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--bg-alt); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer .brand { margin-bottom: 12px; }
.footer .about { color: var(--muted); font-size: .92rem; max-width: 320px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--ink-2); font-size: .92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); font-size: .86rem;
}

/* Responsive */
@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .aud-grid, .feature { grid-template-columns: 1fr; gap: 32px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .statbar { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .tgrid { grid-template-columns: 1fr; }
  .feature .art { order: -1; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .nav-ctas .btn-outline { display: none; }
}
