/* ============================================================
   Hire in 4K — The Working Manual
   Additions on top of ds/manual.css (shared base).
   Adds: mission block, numbered idea list, comparison cards,
   data tables, fill-in worksheets, reference-script block.
   ============================================================ */

/* ---------- MISSION / CREED BLOCK ---------- */
.mission{
  margin: 32px 0;
  padding: 40px 44px;
  background: var(--color-moss-dark);
  color: var(--color-sand-warm);
  border: 1px solid rgba(170,143,87,.4);
  text-align: center;
  position: relative;
}
.mission .m-eb{
  font-family: var(--font-body); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--color-gold-antique); font-weight: 700;
  margin-bottom: 18px;
}
.mission p{
  font-family: var(--font-display) !important; font-weight: 300; font-style: italic;
  font-size: clamp(21px, 2.5vw, 28px) !important; line-height: 1.4 !important;
  letter-spacing: -0.005em; color: var(--color-sand-warm) !important;
  margin: 0 !important; max-width: 640px; margin-inline: auto !important;
}

/* ---------- NUMBERED IDEA LIST ---------- */
.manual .prose ol.num-list{
  list-style: none; counter-reset: nl; margin: 0 0 26px; padding: 0;
  border-top: 1px solid rgba(170,143,87,.32);
}
.manual .prose ol.num-list li{
  position: relative; counter-increment: nl;
  padding: 16px 0 16px 52px;
  border-bottom: 1px solid rgba(170,143,87,.18);
  font-family: var(--font-body); font-size: 16.5px; line-height: 1.62; color: var(--fg);
}
.manual .prose ol.num-list li::before{
  content: counter(nl, decimal-leading-zero);
  position: absolute; left: 0; top: 15px;
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 20px; color: var(--color-gold-antique);
}
.manual .prose ol.num-list li strong{ color: var(--color-ink); font-weight: 700; }

/* ---------- COMPARISON CARDS ---------- */
.compare{
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(170,143,87,.4);
  border: 1px solid rgba(170,143,87,.4);
  margin: 28px 0;
}
.compare .col{ background: #fff; padding: 26px 26px; }
.compare .col.accent{ background: var(--color-moss-light); color: var(--color-sand-warm); }
.compare .col.warn{ background: #FBF6F2; }
.compare .col .c-eb{
  font-family: var(--font-body); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 700; color: var(--color-gold-antique);
  margin-bottom: 6px;
}
.compare .col h6{
  font-family: var(--font-display); font-weight: 300; font-style: normal;
  font-size: 24px; line-height: 1.05; letter-spacing: -0.01em;
  color: var(--color-ink); margin: 0 0 12px; text-transform: none;
}
.compare .col.accent h6{ color: var(--color-sand-warm); }
.compare .col p{ margin: 0 !important; font-size: 15.5px !important; line-height: 1.6 !important; color: var(--fg-2) !important; }
.compare .col.accent p{ color: rgba(237,235,228,.85) !important; }

/* ---------- Q&A (recruiter screen) ---------- */
.qa{ margin: 26px 0; border-top: 1px solid rgba(170,143,87,.32); }
.qa .q{
  padding: 18px 0 6px;
  font-family: var(--font-display); font-weight: 300; font-style: normal;
  font-size: 21px; line-height: 1.2; letter-spacing: -0.01em; color: var(--color-ink);
}
.qa .a{
  display: grid; grid-template-columns: 110px 1fr; gap: 14px;
  padding: 8px 0; font-family: var(--font-body); font-size: 15.5px; line-height: 1.55; color: var(--fg-2);
  border-bottom: 1px solid rgba(170,143,87,.16);
}
.qa .a:last-child{ border-bottom: 0; }
.qa .a .who{
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  padding-top: 3px;
}
.qa .a.sourcer .who{ color: var(--color-oxblood); }
.qa .a.partner .who{ color: var(--color-moss-light); }

/* ---------- DATA TABLES ---------- */
.table-wrap{ overflow-x: auto; margin: 26px 0; -webkit-overflow-scrolling: touch; }
.data-table{
  width: 100%; border-collapse: collapse; min-width: 560px;
  font-family: var(--font-body); background: #fff;
  border: 1px solid rgba(170,143,87,.4);
}
.data-table caption{
  caption-side: top; text-align: left;
  font-family: var(--font-body); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 700; color: var(--color-gold-antique);
  margin-bottom: 10px;
}
.data-table th, .data-table td{
  border: 1px solid rgba(170,143,87,.28);
  padding: 12px 14px; text-align: left; vertical-align: top;
  font-size: 14px; line-height: 1.5;
}
.data-table thead th{
  background: var(--color-moss-dark); color: var(--color-sand-warm);
  font-family: var(--font-body); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 700;
}
.data-table tbody th{
  background: rgba(170,143,87,.1); color: var(--color-ink); font-weight: 700;
  font-size: 14px; white-space: nowrap;
}
.data-table td{ color: var(--fg-2); }
.data-table tbody tr:nth-child(even) td{ background: rgba(237,235,228,.4); }

/* ---------- WORKSHEET / TEMPLATE (fill-in) ---------- */
.worksheet{
  margin: 24px 0;
  background: #fff;
  border: 1px dashed rgba(170,143,87,.6);
  border-radius: var(--radius-3);
  overflow: hidden;
}
.worksheet .ws-head{
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(170,143,87,.1);
  border-bottom: 1px dashed rgba(170,143,87,.5);
  font-family: var(--font-body); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 700; color: var(--color-gold-antique);
}
.worksheet .ws-head svg{ width: 14px; height: 14px; stroke: var(--color-gold-antique); }
.worksheet pre{
  margin: 0; padding: 20px 22px; overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px; line-height: 1.7; color: var(--color-ink);
  white-space: pre; -webkit-overflow-scrolling: touch;
}

/* ---------- REFERENCE SCRIPT BLOCK ---------- */
.script{
  margin: 26px 0; padding: 28px 30px;
  background: #fff; border: 1px solid rgba(170,143,87,.4);
  border-left: 3px solid var(--color-gold-antique);
}
.script .s-intro{
  font-family: var(--font-display) !important; font-style: italic; font-weight: 300;
  font-size: 18px !important; line-height: 1.5 !important; color: var(--color-ink) !important;
  margin: 0 0 18px !important;
}
.script .s-label{
  font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--fg-2); margin: 18px 0 8px;
}
.manual .prose .script ol{
  list-style: none; counter-reset: sc; margin: 0 0 6px; padding: 0; border-top: 0;
}
.manual .prose .script ol li{
  position: relative; counter-increment: sc;
  padding: 9px 0 9px 38px; border-bottom: 1px solid rgba(170,143,87,.14);
  font-size: 15.5px; line-height: 1.55; color: var(--fg);
}
.manual .prose .script ol li::before{
  content: counter(sc) "."; position: absolute; left: 6px; top: 9px;
  font-family: var(--font-display); font-style: italic; color: var(--color-gold-antique); font-weight: 300;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 760px){
  .compare{ grid-template-columns: 1fr; }
  .qa .a{ grid-template-columns: 1fr; gap: 2px; }
  .mission{ padding: 30px 24px; }
}
