/* NewHirePack shared marketing CSS — extracted from live homepage 2026-09-11 */
    :root {
      --navy: #0A192F;
      --navy-light: #112240;
      --cobalt: #1D4ED8;
      --cobalt-hover: #1E40AF;
      --cobalt-soft: rgba(29, 78, 216, 0.12);
      --ink2: #475569;
      --ink3: #64748B;
      --bg: #F8FAFC;
      --white: #fff;
      --border: rgba(10, 25, 47, 0.08);
      --shadow: 0 4px 24px rgba(10, 25, 47, 0.08);
      --gradient: linear-gradient(135deg, #0A192F 0%, #1D4ED8 100%);
      --font-head: "Chivo", system-ui, sans-serif;
      --font-body: "IBM Plex Sans", system-ui, sans-serif;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      background:
        radial-gradient(900px 480px at 100% -5%, rgba(29, 78, 216, 0.14), transparent 55%),
        radial-gradient(720px 400px at -5% 30%, rgba(10, 25, 47, 0.06), transparent 50%),
        var(--bg);
      color: var(--navy);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, .section-title, .price-amount, .solo-amt, .econ-val {
      font-family: var(--font-head);
    }
    a { color: var(--cobalt); font-weight: 600; text-decoration: none; }
    a:hover { text-decoration: underline; }
    .wrap { width: min(960px, calc(100% - 40px)); margin: 0 auto; }
    .wrap-narrow { width: min(640px, calc(100% - 40px)); margin: 0 auto; }
    @media (max-width: 420px) {
      .wrap, .wrap-narrow { width: calc(100% - 24px); }
    }

    .nav-bar { background: var(--navy); color: #fff; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px 16px;
      padding: 18px 0;
      flex-wrap: wrap;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
      background: var(--white);
      border-radius: 10px;
      padding: 6px 12px 6px 6px;
    }
    .brand:hover { text-decoration: none; }
    .mark { width: 40px; height: 40px; border-radius: 8px; display: block; object-fit: contain; background: var(--white); }
    .wordmark { height: 26px; width: auto; display: block; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 10px 14px;
      flex-wrap: wrap;
    }
    .nav-links a {
      color: rgba(255,255,255,.82);
      font-size: 0.8125rem;
      font-weight: 600;
    }
    .nav-links a:hover { color: #fff; }
    .nav-tag {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 999px;
      padding: 6px 12px;
    }
    .accent { height: 4px; background: var(--gradient); }

    .hero { padding: 56px 0 40px; text-align: center; }
    .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--cobalt);
      background: var(--cobalt-soft);
      border-radius: 999px;
      padding: 6px 14px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: clamp(1.85rem, 4.5vw, 2.75rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 0 auto 20px;
      max-width: 16ch;
    }
    .hero-sub {
      font-size: 1.125rem;
      color: var(--ink2);
      line-height: 1.75;
      max-width: 42rem;
      margin: 0 auto 16px;
    }
    .hero-price {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
      margin: 0 auto 24px;
    }
    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 28px;
    }
    .hero-pills span {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--ink2);
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 24px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.9375rem;
      text-decoration: none !important;
      border: none;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--navy);
      color: #fff !important;
      box-shadow: 0 8px 24px rgba(10, 25, 47, 0.18);
    }
    .btn-primary:hover { background: var(--navy-light); }
    .btn-secondary {
      background: var(--white);
      color: var(--navy) !important;
      border: 1px solid var(--border);
    }
    .btn-secondary:hover { border-color: var(--cobalt); }
    .btn-cobalt {
      background: var(--cobalt);
      color: #fff !important;
    }
    .btn-cobalt:hover { background: var(--cobalt-hover); }
    .btn-block { width: 100%; margin-top: auto; }

    .compliance {
      background: var(--navy);
      color: #e8edf4;
      padding: 28px 0;
    }
    .compliance-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 480px) {
      .compliance-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 800px) {
      .compliance-grid { grid-template-columns: repeat(4, 1fr); }
    }
    .compliance-item strong {
      display: block;
      font-family: var(--font-head);
      font-size: 0.9rem;
      margin-bottom: 4px;
      color: #fff;
    }
    .compliance-item span { font-size: 0.8125rem; color: #94A3B8; line-height: 1.5; }

    section { padding: 48px 0; }
    section.alt { background: rgba(255,255,255,.55); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .section-title {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin: 0 0 8px;
      text-align: center;
    }
    .section-lead {
      text-align: center;
      color: var(--ink2);
      max-width: 36rem;
      margin: 0 auto 36px;
      font-size: 1.02rem;
    }

    .pillars { display: grid; gap: 20px; }
    @media (min-width: 720px) {
      .pillars { grid-template-columns: repeat(3, 1fr); }
    }
    .pillar {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow);
    }
    .pillar-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      margin-bottom: 14px;
      background: var(--cobalt-soft);
      color: var(--cobalt);
    }
    .pillar h3 { font-size: 1.0625rem; font-weight: 800; margin: 0 0 8px; }
    .pillar p { margin: 0; font-size: 0.9375rem; color: var(--ink2); line-height: 1.65; }

    .steps { display: grid; gap: 16px; }
    @media (min-width: 640px) {
      .steps { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 900px) {
      .steps { grid-template-columns: repeat(4, 1fr); }
    }
    .step {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
    }
    .step-num {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      color: var(--cobalt);
      margin-bottom: 8px;
    }
    .step h3 { font-size: 0.9375rem; font-weight: 800; margin: 0 0 6px; }
    .step p { margin: 0; font-size: 0.875rem; color: var(--ink2); line-height: 1.6; }

    .flow-visual { display: grid; gap: 40px; }
    .flow-item {
      display: grid;
      gap: 24px;
      align-items: center;
    }
    @media (min-width: 860px) {
      .flow-item { grid-template-columns: 1fr 1fr; gap: 32px; }
      .flow-item.reverse .flow-copy { order: 2; }
      .flow-item.reverse .flow-shot { order: 1; }
    }
    .flow-copy { max-width: 28rem; }
    .flow-copy .step-num { margin-bottom: 10px; }
    .flow-copy h3 {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 800;
      margin: 0 0 10px;
      letter-spacing: -0.02em;
    }
    .flow-copy p {
      margin: 0;
      font-size: 0.9375rem;
      color: var(--ink2);
      line-height: 1.65;
    }
    .flow-shot {
      margin: 0;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      background: var(--white);
    }
    .flow-shot img {
      display: block;
      width: 100%;
      height: auto;
      vertical-align: middle;
    }
    .flow-shot.mobile {
      max-width: 280px;
      margin-left: auto;
      margin-right: auto;
      border-radius: 24px;
    }
    @media (min-width: 860px) {
      .flow-item:not(.reverse) .flow-shot.mobile { margin-left: 0; }
      .flow-item.reverse .flow-shot.mobile { margin-right: 0; margin-left: auto; }
    }
    .flow-shot figcaption {
      font-size: 0.75rem;
      color: var(--ink3);
      padding: 10px 14px;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .solo-intro { text-align: center; max-width: 40rem; margin: 0 auto 28px; }
    .solo-intro .eyebrow { margin-bottom: 12px; }
    .solo-intro p { margin: 0; color: var(--ink2); }
    .solo-packs {
      display: grid;
      gap: 12px;
      grid-template-columns: 1fr;
      margin-bottom: 20px;
    }
    @media (min-width: 640px) {
      .solo-packs { grid-template-columns: repeat(3, 1fr); }
    }
    .solo-pack {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px 16px;
      text-align: center;
      display: flex;
      flex-direction: column;
    }
    .solo-pack.highlight {
      border-color: var(--cobalt);
      box-shadow: 0 8px 24px rgba(29, 78, 216, 0.14);
    }
    .solo-count {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--cobalt);
      margin-bottom: 6px;
    }
    .solo-amt { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--navy); }
    .solo-per { font-size: 0.78rem; color: var(--ink3); margin: 8px 0 14px; }
    .solo-note {
      font-size: 0.8125rem;
      color: var(--ink3);
      text-align: center;
      max-width: 42rem;
      margin: 0 auto;
      line-height: 1.6;
    }

    .econ-row {
      display: grid;
      gap: 12px;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 28px;
    }
    @media (min-width: 720px) {
      .econ-row { grid-template-columns: repeat(4, 1fr); }
    }
    .econ-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
      text-align: center;
    }
    .econ-val { font-size: 1.5rem; font-weight: 800; color: var(--cobalt); letter-spacing: -0.03em; }
    .econ-card p { margin: 4px 0 0; font-size: 0.78rem; color: var(--ink3); }

    .pricing-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 720px) {
      .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
    }
    .price-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .price-card.featured {
      border-color: var(--cobalt);
      box-shadow: 0 8px 32px rgba(29, 78, 216, 0.18);
    }
    .price-badge {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--cobalt);
      color: #fff;
      font-family: var(--font-head);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      white-space: nowrap;
    }
    .price-card h3 { font-size: 1rem; font-weight: 800; margin: 0 0 4px; }
    .price-tagline { font-size: 0.8125rem; color: var(--ink3); margin: 0 0 12px; }
    .price-amount { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; }
    .price-amount span { font-size: 0.875rem; font-weight: 600; color: var(--ink3); font-family: var(--font-body); }
    .price-sub { font-size: 0.8125rem; color: var(--ink3); margin: 0 0 16px; }
    .price-features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      flex: 1;
      font-size: 0.875rem;
      color: var(--ink2);
    }
    .price-features li {
      padding: 6px 0 6px 20px;
      position: relative;
    }
    .price-features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--cobalt);
      font-weight: 800;
    }
    .price-features li.muted { color: var(--ink3); }
    .price-features li.muted::before { content: "–"; color: var(--ink3); }

    .not-box {
      background: rgba(10, 25, 47, 0.04);
      border-radius: 12px;
      padding: 20px 24px;
      font-size: 0.9375rem;
      color: var(--ink2);
      line-height: 1.7;
      max-width: 44rem;
      margin: 28px auto 0;
      text-align: center;
    }

    .roadmap-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 720px) {
      .roadmap-grid { grid-template-columns: 1fr 1fr; }
    }
    .roadmap-col {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px 24px;
    }
    .roadmap-col h3 { font-size: 1rem; font-weight: 800; margin: 0 0 12px; }
    .roadmap-col ul { margin: 0; padding-left: 1.1rem; font-size: 0.875rem; color: var(--ink2); }
    .roadmap-col li { margin: 8px 0; }
    .tag {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 4px;
      background: var(--cobalt-soft);
      color: var(--cobalt);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      vertical-align: middle;
    }

    .faq { max-width: 720px; margin: 0 auto; }
    .faq details {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-bottom: 10px;
    }
    .faq summary {
      padding: 16px 18px;
      font-weight: 600;
      font-size: 0.92rem;
      cursor: pointer;
      list-style: none;
      font-family: var(--font-head);
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq details[open] summary { border-bottom: 1px solid var(--border); }
    .faq .answer {
      padding: 14px 18px 18px;
      font-size: 0.88rem;
      color: var(--ink2);
      line-height: 1.65;
    }

    .cta-band {
      background: var(--navy);
      color: #fff;
      padding: 56px 0;
    }
    .cta-band h2 {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 800;
      margin: 0 0 12px;
      text-align: center;
    }
    .cta-band > .wrap-narrow > p.band-lead {
      color: rgba(255,255,255,.78);
      max-width: 34rem;
      margin: 0 auto 24px;
      text-align: center;
    }
    .form-card {
      background: var(--white);
      color: var(--navy);
      border-radius: 16px;
      padding: 28px 24px;
      text-align: left;
      box-shadow: var(--shadow);
    }
    .form-row { margin-bottom: 14px; }
    .form-card label {
      display: block;
      font-size: 0.8125rem;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .form-card .hint {
      font-weight: 400;
      color: var(--ink3);
      font-size: 0.75rem;
    }
    .form-card input,
    .form-card select {
      width: 100%;
      font: inherit;
      font-size: 1rem;
      color: var(--navy);
      padding: 12px 14px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: var(--bg);
      appearance: auto;
    }
    .form-card input:focus,
    .form-card select:focus {
      outline: 2px solid rgba(29, 78, 216, 0.45);
      outline-offset: 2px;
    }
    .form-card .btn { width: 100%; }
    .mailto-fallback {
      text-align: center;
      margin: 18px 0 0;
      font-size: 0.8125rem;
      color: rgba(255,255,255,.7);
    }
    .mailto-fallback a { color: #93C5FD; }
    .legal-note {
      font-size: 0.8125rem;
      color: rgba(255,255,255,.55);
      text-align: center;
      max-width: 40rem;
      margin: 24px auto 0;
      line-height: 1.6;
    }

    footer {
      background: var(--navy);
      color: rgba(255,255,255,.78);
      padding: 40px 0 36px;
      border-top: 4px solid transparent;
      background-image: linear-gradient(var(--navy), var(--navy)), var(--gradient);
      background-origin: border-box;
      background-clip: padding-box, border-box;
    }
    .footer-inner { display: grid; gap: 28px; }
    @media (min-width: 720px) {
      .footer-inner { grid-template-columns: 1fr 1.2fr; align-items: start; }
    }
    .footer-wordmark { height: 24px; width: auto; margin-bottom: 10px; display: block; }
    .product-of { margin: 0; font-size: 0.875rem; color: rgba(255,255,255,.55); }
    .footer-meta p { margin: 0 0 14px; font-size: 0.9375rem; line-height: 1.7; }
    footer a { color: #93C5FD; }
    .copy { font-size: 0.8125rem; color: rgba(255,255,255,.45); }

    .walkthrough {
      padding: 48px 0 56px;
    }
    .walkthrough-grid {
      display: grid;
      gap: 28px;
      align-items: start;
    }
    @media (min-width: 880px) {
      .walkthrough-grid {
        grid-template-columns: 1fr min(400px, 42%);
        gap: 36px;
      }
    }
    .walkthrough-copy .section-title { text-align: left; margin-bottom: 10px; }
    .walkthrough-copy .section-lead { text-align: left; margin: 0 0 18px; max-width: none; }
    .walkthrough-copy ol {
      margin: 0 0 20px;
      padding-left: 1.2rem;
      color: var(--ink2);
      font-size: 0.975rem;
    }
    .walkthrough-copy li { margin-bottom: 8px; }
    .walkthrough-frame-wrap {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      background: #e8eef5;
      min-height: 640px;
    }
    .walkthrough-frame {
      display: block;
      width: 100%;
      height: 700px;
      border: 0;
      background: transparent;
    }
    @media (max-width: 879px) {
      .walkthrough-frame-wrap { max-width: 420px; margin: 0 auto; }
    }

    .cadence-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin: 0 auto 28px;
      max-width: 520px;
    }
    .cadence-switch {
      display: inline-flex;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 4px;
      gap: 2px;
      box-shadow: var(--shadow);
    }
    .cadence-btn {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.875rem;
      color: var(--ink2);
      background: transparent;
      border: none;
      border-radius: 999px;
      padding: 8px 20px;
      cursor: pointer;
      line-height: 1.3;
    }
    .cadence-btn:hover { color: var(--navy); }
    .cadence-btn[aria-pressed="true"] {
      background: var(--navy);
      color: #fff;
    }
    .cadence-btn[aria-pressed="true"]:hover { color: #fff; }
    .cadence-switch[hidden] { display: none !important; }
    @media (max-width: 390px) {
      .cadence-wrap { width: 100%; max-width: none; }
      .cadence-switch { width: 100%; }
      .cadence-btn { flex: 1; padding: 10px 12px; }
    }

    @media (max-width: 390px) {
      .hero { padding: 40px 0 32px; }
      .hero h1 { font-size: 1.7rem; }
      .hero-sub { font-size: 1rem; }
      .btn { width: 100%; }
      .hero-ctas { flex-direction: column; }
      section { padding: 40px 0; }
      .form-card { padding: 22px 16px; }
    }

/* Inner article pages */
.page-hero { padding: 48px 0 12px; }
.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 22ch;
}
.page-hero .hero-sub { text-align: left; margin: 0 0 20px; max-width: 42rem; }
.article { padding: 12px 0 56px; }
.article h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 32px 0 10px;
}
.article h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 22px 0 8px;
}
.article p, .article li { color: var(--ink2); font-size: 1rem; line-height: 1.7; }
.article ul, .article ol { margin: 0 0 16px; padding-left: 1.2rem; }
.article li { margin-bottom: 8px; }
.article a { font-weight: 600; }
.callout {
  border: 1px solid var(--border);
  border-left: 3px solid var(--cobalt);
  background: var(--white);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0;
  color: var(--ink2);
  font-size: 0.95rem;
}
.callout.warn { border-left-color: #D97706; background: #FFFBEB; }
.callout.ok { border-left-color: #059669; }
.cta-box {
  background: var(--navy);
  color: #e8edf4;
  border-radius: 16px;
  padding: 28px 24px;
  margin: 36px 0 8px;
}
.cta-box h2 { color: #fff; margin-top: 0; }
.cta-box p { color: #94A3B8; }
.cta-box .hero-ctas { justify-content: flex-start; margin-top: 16px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq-list summary {
  font-family: var(--font-head);
  font-weight: 800;
  cursor: pointer;
}
.faq-list .answer { color: var(--ink2); margin-top: 8px; font-size: 0.95rem; }
.legal p { font-size: 0.95rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 0 0 14px; }
.footer-links a { font-size: 0.8125rem; }
.og-hidden { display: none; }
