/* Generated by scripts/css.sh from style/{admin,auth,hiring,guide,questions,guidance}.css. Do not edit. */
/* --- style/admin.css --- */
/* Admin page. Ported from product-direction/admin-demo/index.html, scoped under .admin. */
.admin {
  --bg: #FFFFFF; --surface: #FAFAFA; --card-bg: #F4F4F5;
  --ink: #1A1A1A; --muted: #71717A; --slate: #A1A1AA;
  --rule: #E4E4E7; --rule2: #D4D4D8;
  --red: #991B1B; --red-bg: #FEE2E2;
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px; --radius-sm: 8px;
  box-sizing: border-box;
  background: var(--bg); color: var(--ink); font-family: var(--font);
  font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased;
  max-width: 1100px; margin: 0 auto; padding: 32px 24px 64px;
}
.admin *, .admin *::before, .admin *::after { box-sizing: border-box; margin: 0; padding: 0; }
.admin header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.admin h1 { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; }
.admin header a { color: var(--muted); text-decoration: none; font-size: 13px; }
.admin h2 { font-size: 15px; font-weight: 600; margin: 32px 0 12px; }
.admin h3 { font-size: 13px; font-weight: 600; margin: 16px 0 8px; }
.admin h3:first-child { margin-top: 0; }

.admin .msg { font-size: 13px; color: var(--muted); min-height: 20px; }
.admin .msg.error, .admin .error { color: var(--red); }
.admin .hint { font-size: 12px; color: var(--muted); }

.admin .tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.admin .tile { background: var(--card-bg); border-radius: var(--radius); padding: 16px 18px; }
.admin .tile .label { font-size: 12px; color: var(--muted); }
.admin .tile .value { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; margin-top: 2px; }

.admin .card { background: var(--bg); border: 1px solid var(--rule); border-radius: var(--radius); padding: 18px; }
.admin .chart { width: 100%; height: 180px; display: block; }
.admin .chart rect.bar { fill: var(--ink); }
.admin .chart rect.bar:hover { fill: var(--muted); }
.admin .chart .gridline { stroke: var(--rule); stroke-width: 1; }
.admin .chart text { fill: var(--muted); font-size: 10px; font-family: var(--font); }

.admin .scroll { overflow-x: auto; }
.admin table { width: 100%; border-collapse: collapse; }
.admin table.users { min-width: 850px; }
.admin th { text-align: left; font-size: 12px; font-weight: 500; color: var(--muted); padding: 8px 10px; border-bottom: 1px solid var(--rule); white-space: nowrap; }
.admin td { padding: 8px 10px; border-bottom: 1px solid var(--rule); vertical-align: middle; }
.admin tr:last-child td { border-bottom: none; }
.admin td.num, .admin th.num { text-align: right; font-variant-numeric: tabular-nums; }
.admin td small { color: var(--muted); }
.admin td.actions { white-space: nowrap; }
.admin td.actions button { margin-right: 4px; }

.admin select, .admin input {
  font-family: var(--font); font-size: 13px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--rule); border-radius: var(--radius-sm);
  padding: 6px 10px; outline: none;
}
.admin input.budget { width: 7em; }
.admin button {
  font-family: var(--font); font-size: 13px; font-weight: 500; cursor: pointer;
  border: 1px solid var(--rule2); background: var(--bg); color: var(--ink);
  border-radius: 999px; padding: 6px 14px;
}
.admin button:hover { background: var(--surface); }
.admin button:disabled { cursor: default; opacity: 0.5; }
.admin button.danger { color: var(--red); border-color: var(--red-bg); }
.admin button.danger:hover { background: var(--red-bg); }
.admin button.primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.admin button:focus-visible, .admin select:focus-visible, .admin input:focus-visible, .admin a:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px;
}

.admin .inline-form { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.admin .pager { display: flex; gap: 12px; align-items: center; margin-top: 14px; font-size: 13px; color: var(--muted); }

.admin .detail-row td { background: var(--surface); }
.admin .job { display: flex; gap: 12px; padding: 4px 6px; font-size: 13px; flex-wrap: wrap; }
.admin .job .rec { color: var(--muted); }
.admin .empty { color: var(--slate); font-size: 13px; padding: 12px 0; }

.admin .linkbox { margin: 12px 0; }
.admin .linkbox label { display: block; font-size: 13px; }
.admin .linkbox input { display: block; width: 100%; margin: 6px 0; font-family: ui-monospace, monospace; }

.admin dialog.confirm {
  position: static; width: 100%; max-width: 520px; margin: 8px 0;
  border: 1px solid var(--red-bg); border-radius: var(--radius); padding: 16px; background: var(--bg); color: var(--ink);
}
.admin dialog.confirm h3 { margin-top: 0; }
.admin dialog.confirm label { display: block; margin: 10px 0; font-size: 13px; }
.admin dialog.confirm input { display: block; width: 100%; margin-top: 4px; }
.admin dialog.confirm .row { display: flex; gap: 8px; margin-top: 12px; }
.admin dialog.confirm ul { padding-left: 20px; margin: 8px 0; }

@media (max-width: 700px) {
  .admin { padding: 24px 16px; }
  .admin .tiles { grid-template-columns: repeat(2, 1fr); }
  .admin header { align-items: center; }
}

/* --- style/auth.css --- */
/* Ported from templates/login.html and templates/privacy.html.
   Login/welcome/reset pages use `main.auth`; the privacy page uses `.privacy`. */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #FFFFFF;
  --card-bg: #F4F4F5;
  --ink: #1A1A1A;
  --muted: #71717A;
  --slate: #A1A1AA;
  --rule: #E4E4E7;
  --rule2: #D4D4D8;
  --red: #991B1B;
  --red-bg: #FEE2E2;
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---------- login / welcome / reset ---------- */

main.auth { max-width: 380px; margin: 0 auto; padding: 72px 24px 48px; }
main.auth h1 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
main.auth .tagline { color: var(--muted); margin-top: 6px; }
main.auth h2 { font-size: 20px; margin: 24px 0 12px; }
main.auth [hidden] { display: none !important; }
main.auth h3 { font-size: 16px; margin: 24px 0 8px; }
main.auth p { margin: 12px 0; }
main.auth fieldset { border: 0; min-width: 0; display: contents; }
main.auth details { margin-top: 20px; border-top: 1px solid var(--rule); padding-top: 14px; }
main.auth summary { cursor: pointer; font-weight: 500; }
main.auth button.secondary { background: var(--card-bg); color: var(--ink); }
main.auth button.danger { background: var(--red); }
main.auth [data-account-message] { color: var(--muted); overflow-wrap: anywhere; }
main.auth .passkey-row { margin: 12px 0; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
main.auth .passkey-row button { margin-right: 8px; }
main.auth form .fine { margin: 4px 0 12px; }

main.auth .steps {
  list-style: none;
  margin: 28px 0;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  counter-reset: step;
}
main.auth .steps li { counter-increment: step; color: var(--muted); padding-left: 26px; position: relative; }
main.auth .steps li + li { margin-top: 8px; }
main.auth .steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  color: var(--slate);
  font-variant-numeric: tabular-nums;
}

main.auth form { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
main.auth label { font-weight: 500; font-size: 13px; }
main.auth input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
main.auth input:focus { border-color: var(--ink); }
main.auth button {
  margin-top: 6px;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
main.auth button:hover { opacity: 0.85; }
main.auth button:disabled { opacity: 0.5; cursor: default; }

main.auth .error {
  background: var(--red-bg);
  color: var(--red);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
main.auth .error:empty { display: none; }

main.auth .alt { margin-top: 20px; color: var(--muted); text-align: center; }
main.auth .alt + .alt { margin-top: 8px; }
main.auth .alt a { color: var(--ink); }

main.auth .fine { margin-top: 32px; color: var(--slate); font-size: 12px; line-height: 1.6; }
main.auth .fine a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- privacy ---------- */

#topbar.privacy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
#topbar.privacy #brand { font-weight: 700; font-size: 18px; color: var(--ink); text-decoration: none; letter-spacing: -0.4px; }
#topbar.privacy .link-btn { color: var(--muted); text-decoration: none; font-size: 14px; }
#topbar.privacy .link-btn:hover { color: var(--ink); }

main.privacy { max-width: 680px; margin: 0 auto; padding: 40px 20px 96px; font-size: 15px; line-height: 1.6; }
main.privacy h1 { font-size: 30px; font-weight: 600; letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 10px; }
main.privacy .lede { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
main.privacy .section { border-top: 1px solid var(--rule); }
main.privacy .section:last-of-type { border-bottom: 1px solid var(--rule); }
main.privacy .section > summary {
  display: flex;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  list-style: none;
  user-select: none;
}
main.privacy .section > summary::-webkit-details-marker { display: none; }
main.privacy .section > summary h2 { font-size: inherit; font-weight: inherit; letter-spacing: inherit; margin: 0; }
main.privacy .section > .body { padding: 0 0 24px; }
main.privacy .chev {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .2s;
  flex: none;
}
main.privacy details[open] > summary .chev { transform: rotate(-135deg); }
main.privacy p { margin-bottom: 14px; }
main.privacy p:last-child { margin-bottom: 0; }
main.privacy .partner { background: var(--card-bg); border-radius: var(--radius); margin-bottom: 8px; }
main.privacy .partner summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  list-style: none;
  user-select: none;
}
main.privacy .partner summary::-webkit-details-marker { display: none; }
main.privacy .partner summary h3 { font-size: inherit; font-weight: inherit; letter-spacing: inherit; margin: 0; display: contents; }
main.privacy .partner summary h3 > span { color: var(--muted); font-weight: 400; }
main.privacy .partner dl { padding: 0 22px 18px; }
main.privacy .row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 8px 0; border-top: 1px solid var(--rule); }
main.privacy .row:first-of-type { border-top: none; padding-top: 0; }
main.privacy .row dt { color: var(--muted); font-size: 13px; padding-top: 2px; }
main.privacy .row dd a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--rule2); }
main.privacy .row dd a:hover { text-decoration-color: var(--ink); }
main.privacy .row dd a + a { margin-left: 14px; }
main.privacy .note { border-left: 2px solid var(--rule2); padding-left: 16px; color: var(--muted); }
main.privacy footer { margin-top: 40px; color: var(--muted); font-size: 13px; }
main.privacy footer a { color: var(--ink); text-decoration: none; }
@media (max-width: 520px) {
  main.privacy .row { grid-template-columns: 1fr; gap: 4px; }
  main.privacy h1 { font-size: 26px; }
}

/* Login alternatives and the combined account page. */
main.auth .login-options { display:flex; flex-wrap:wrap; justify-content:center; gap:8px 16px; margin-top:28px; font-size:12px; }
main.auth .login-options a { color:var(--muted); text-underline-offset:3px; }
main.auth .login-options a:hover, main.auth .login-options a[aria-expanded="true"] { color:var(--ink); }
main.auth .login-alternative { border-top:1px solid var(--rule); margin-top:24px; padding-top:4px; }
main.auth .password-help { color:var(--muted); font-size:12px; line-height:1.7; text-align:center; }
main.auth #account-signup-link a { display:inline-block; padding:8px 16px; color:var(--ink); text-underline-offset:3px; }
main.auth .account-heading { display:flex; align-items:center; justify-content:space-between; gap:16px; margin:24px 0 12px; }
main.auth .account-heading h2, main.auth .account-heading form, main.auth .account-heading button { margin:0; }
main.auth #account-identity { overflow-wrap:anywhere; color:var(--muted); }
main.auth #account-confirmation { background:var(--card-bg); border:1px solid var(--rule2); border-radius:var(--radius); padding:20px; margin:24px 0; }
main.auth #account-confirmation h3 { margin:0 0 8px; }
main.auth #account-confirmation > button { width:100%; }
main.auth .account-section { padding:0; margin:0; border-top:1px solid var(--rule); }
main.auth .account-section:last-of-type { border-bottom:1px solid var(--rule); }
main.auth .account-section > summary { padding:18px 0; }
main.auth .account-section[open] { padding-bottom:20px; }
main.auth [data-account-message]:empty { display:none; }
main.auth a:focus-visible, main.auth summary:focus-visible, main.auth button:focus-visible { outline:2px solid var(--ink); outline-offset:4px; }

main.auth.account-page { max-width:600px; padding-top:24px; }

/* --- style/hiring.css --- */
/* Hiring interface, ported from templates/index.html. Ops concatenates style/*.css. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #FFFFFF;
  --surface: #FAFAFA;
  --card-bg: #F4F4F5;
  --ink:     #1A1A1A;
  --muted:   #71717A;
  --slate:   #A1A1AA;
  --rule:    #E4E4E7;
  --rule2:   #D4D4D8;

  --green:   #166534;
  --green-bg:#DCFCE7;
  --yellow:  #92400E;
  --yellow-bg:#FEF3C7;
  --orange:  #9A3412;
  --orange-bg:#FFEDD5;
  --red:     #991B1B;
  --red-bg:  #FEE2E2;

  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 { font-size: 20px; font-weight: 600; }
h2 { font-size: 16px; font-weight: 600; }

#topbar { display:flex; justify-content:space-between; align-items:center;
  padding:16px 20px; border-bottom:1px solid var(--rule); }
#brand { font-weight:700; font-size:18px; color:var(--ink); text-decoration:none; letter-spacing:-0.4px; }
#topbar-actions a.link-btn { margin-right:14px; }
#view { max-width:720px; margin:0 auto; padding:24px 20px 80px; }

.card { background:var(--card-bg); border-radius:var(--radius); padding:20px; margin-bottom:12px; }
a.card { display:block; color:inherit; text-decoration:none; }
.btn { background:var(--ink); color:var(--bg); border:none; border-radius:100px;
  padding:10px 22px; font:inherit; font-weight:500; cursor:pointer; text-decoration:none; display:inline-block; }
.btn:disabled { opacity:0.4; cursor:not-allowed; }
.btn-ghost { background:transparent; color:var(--ink); border:1px solid var(--rule2); }
.link-btn { background:none; border:none; color:var(--muted); font:inherit; cursor:pointer; text-decoration:none; padding:0; }
.link-btn:disabled { opacity:0.5; cursor:not-allowed; }
.link-btn.underline { text-decoration:underline; }
summary.link-btn { display:inline; }
summary { cursor:pointer; }
:focus-visible { outline:2px solid var(--ink); outline-offset:2px; }

.row { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.row-between { display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.ellipsis { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.pre { white-space:pre-wrap; }

.role-row { cursor:pointer; }
.candidate-row { cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.candidate-row.top { border:1px solid var(--ink); background:var(--bg); }
.rank { font-weight:700; width:22px; text-align:right; flex-shrink:0; }
.rank.muted { color:var(--slate); font-size:inherit; }

.chip { display:inline-flex; align-items:center; gap:6px; border:1px solid var(--rule2);
  border-radius:100px; padding:8px 14px; margin:0 8px 8px 0; cursor:pointer;
  font-size:13px; user-select:none; background:var(--bg); color:inherit; }
.chip.selected { background:var(--ink); color:var(--bg); border-color:var(--ink); }
.chip .imp { font-size:11px; font-weight:600; opacity:0.75; }
button.chip { font:inherit; font-size:13px; }
.chip.score { padding:4px 10px; margin:0 0 0 4px; }

.result-row { display:flex; justify-content:space-between; gap:12px;
  padding:12px 0; border-bottom:1px solid var(--rule); }
.badge { border-radius:100px; padding:3px 10px; font-size:12px; font-weight:600; white-space:nowrap; }
.badge.match { background:var(--green-bg); color:var(--green); }
.badge.miss { background:var(--red-bg); color:var(--red); }
.badge.unknown { background:var(--yellow-bg); color:var(--yellow); }
.badge.strong { background:var(--green-bg); color:var(--green); }
.badge.possible { background:var(--yellow-bg); color:var(--yellow); }
.badge.weak { background:var(--orange-bg); color:var(--orange); }
.badge.knockout { background:var(--rule); color:var(--muted); }
.badge.hired { background:var(--green-bg); color:var(--green); }
.badge.rejected { background:var(--red-bg); color:var(--red); }
.badge.interviewing { background:var(--yellow-bg); color:var(--yellow); }

.cmp { border-collapse:collapse; width:100%; font-size:13px; }
.cmp th, .cmp td { padding:8px 10px; border-bottom:1px solid var(--rule); text-align:center; }
.cmp th:first-child, .cmp td:first-child { text-align:left; }

.score-big { font-size:56px; font-weight:700; letter-spacing:-2px; line-height:1; }
.empty { color:var(--muted); text-align:center; padding:48px 0; }
select { background:var(--bg); border:1px solid var(--rule); border-radius:var(--radius-sm);
  padding:6px 8px; font:inherit; font-size:13px; color:var(--muted); }
textarea, input[type=text], input[type=email], input[type=number], input[type=password] { width:100%; background:var(--bg); border:1px solid var(--rule);
  border-radius:var(--radius-sm); padding:10px 12px; font:inherit; color:var(--ink); outline:none; }
textarea { min-height:160px; resize:vertical; line-height:1.6; }
input:disabled, textarea:disabled { opacity:0.6; }
progress { accent-color:var(--ink); }
.error-line { color:var(--red); font-size:13px; min-height:18px; }
.muted { color:var(--muted); font-size:13px; }

.modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.4); display:flex;
  align-items:center; justify-content:center; padding:20px; z-index:100; }
.modal { max-width:420px; width:100%; max-height:100%; overflow:auto; }

@media (max-width: 480px) {
  #view { padding:16px 12px 64px; }
  .card { padding:14px; }
  .score-big { font-size:44px; }
  .candidate-row { align-items:flex-start; }
  .row-between > h1, .row-between > h2 { width:100%; }
}

@media print {
  #topbar, .no-print { display:none !important; }
  #view { max-width:100%; padding:0; }
  .card { background:none; padding:8px 0; break-inside:avoid; }
  a { color:inherit; text-decoration:none; }
}

#role-sharing label { display:block; margin:10px 0 6px; }
#role-sharing input { min-height:44px; }

/* --- style/guide.css --- */
/* Public cards walkthrough and contextual hiring guidance. */
.how-to-link { display:inline-flex; align-items:center; gap:4px; color:var(--ink); text-decoration:none;
  border:1px solid var(--rule); border-radius:100px; padding:8px 14px; font-size:13px; white-space:nowrap; min-height:40px; }
.how-to-link:hover { background:#ffffff; }
.auth-help { display:flex; align-items:center; justify-content:space-between; padding:16px 24px; border-bottom:1px solid var(--rule); }
main.auth { padding-top:48px; max-width:440px; }
main.auth .tagline { font-size:23px; color:var(--ink); line-height:1.3; letter-spacing:-.4px; margin-top:14px; }
main.auth .login-purpose { margin:20px 0 14px; color:#000000; line-height:1.7; }
.login-guide { color:#000000; display:inline-block; margin-bottom:12px; text-underline-offset:4px; }
.privacy-help-links,.admin-help-links { display:flex; align-items:center; gap:18px; }
.admin-page-purpose { color:var(--muted); margin:0 0 24px; }
#topbar-actions { display:flex; flex-wrap:wrap; justify-content:flex-end; align-items:center; gap:16px; }
#topbar-actions a.link-btn { margin:0; }
.guide-topbar nav { display:flex; gap:22px; align-items:center; }
.how-to-guide { max-width:1220px; margin:auto; padding:42px 32px 24px; color:#000000; }
.guide-heading { display:flex; justify-content:space-between; align-items:flex-end; gap:28px; margin-bottom:30px; }
.guide-eyebrow { font-size:11px; font-weight:650; letter-spacing:1.6px; text-transform:uppercase; color:#000000; margin-bottom:14px; }
.guide-heading h1 { font-size:clamp(30px,3.5vw,44px); font-weight:600; line-height:1.15; letter-spacing:-1.5px; }
.guide-heading>p { max-width:285px; color:#000000; font-size:14px; line-height:1.6; }
.guide-card { display:grid; grid-template-columns:310px minmax(0,1fr); border:1px solid #dddddd; border-radius:18px; overflow:hidden; background:#ffffff; }
.guide-copy { padding:34px; display:flex; flex-direction:column; align-items:flex-start; }
.guide-number { font:500 60px/1 Georgia,serif; letter-spacing:-3px; color:#000000; margin-bottom:30px; }
.guide-copy h2 { font-size:30px; line-height:1.15; letter-spacing:-1px; font-weight:600; margin-bottom:18px; }
.guide-instruction { color:#000000; font-size:16px; line-height:1.7; }
.guide-count { margin-top:auto; padding-top:26px; font-size:10px; letter-spacing:1px; color:#000000; }
.guide-screenshot { margin:0; padding:24px; background:#ffffff; display:flex; flex-direction:column; justify-content:center; min-width:0; }
.guide-screenshot>a { color:inherit; display:block; background:white; border:1px solid #dddddd; border-radius:8px; box-shadow:0 10px 26px #00000012; overflow:hidden; line-height:0; }
.guide-screenshot img { display:block; width:100%; height:auto; max-height:420px; object-fit:contain; }
.guide-screenshot figcaption { display:flex; justify-content:space-between; gap:10px; color:#000000; font-size:10px; margin-top:12px; }
.guide-screenshot figcaption a { color:inherit; text-underline-offset:3px; }
.guide-controls { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:24px; }
.guide-dots { display:flex; gap:10px; }
.guide-dots a { display:flex; align-items:center; justify-content:center; width:40px; height:40px; border:1px solid #dddddd; border-radius:50%; font-size:12px; text-decoration:none; color:#000000; }
.guide-dots a[aria-current] { background:#000000; border-color:#000000; color:#fff; }
.guide-buttons { display:flex; gap:8px; }
.guide-button { display:inline-flex; justify-content:center; align-items:center; padding:12px 22px; min-height:46px; border:1px solid #dddddd; border-radius:8px; text-decoration:none; font-size:14px; font-weight:550; color:#000000; }
.guide-button[aria-disabled] { opacity:.4; }
.guide-next { background:#000000; color:white; border-color:#000000; }
.guide-next:hover { background:#000000; }
.guide-return-note { margin:22px 0; font-size:12px; color:#000000; }
.guide-footer { border-top:1px solid #dddddd; padding:22px 0; display:flex; justify-content:space-between; gap:16px; font-size:12px; color:#000000; }
.guide-footer a { color:inherit; text-underline-offset:3px; }
.hiring-with-help { display:grid; grid-template-columns:260px minmax(0,760px); max-width:1080px; margin:0 auto; gap:24px; padding:24px 20px 0; align-items:start; }
.hiring-with-help #view { min-width:0; width:100%; max-width:none; padding:0 0 80px; margin:0; }
.page-help { background:#ffffff; color:#000000; padding:28px 24px; border:1px solid #dddddd; border-radius:12px; }
.page-help h2 { font-size:25px; line-height:1.2; letter-spacing:-.6px; margin-bottom:16px; }
.page-help p:not(.guide-eyebrow) { color:#000000; font-size:14px; line-height:1.65; }
.page-help-desktop { margin-top:24px; padding-top:24px; border-top:1px solid #dddddd; }
.page-help a { display:inline-block; color:#000000; text-underline-offset:4px; font-size:12px; margin-top:20px; line-height:1.6; }
.page-help-mobile { display:none; }
@media(max-width:850px) {
 .guide-heading { display:block; }.guide-heading>p { margin-top:16px; max-width:500px; }
 .guide-card { grid-template-columns:260px minmax(0,1fr); }.guide-copy { padding:26px; }
 .hiring-with-help { grid-template-columns:215px minmax(0,1fr); gap:18px; }.page-help { padding:22px 18px; }
}
@media(max-width:700px) {
 .how-to-guide { padding:28px 16px 16px; }.guide-heading { margin-bottom:22px; }
 .guide-heading h1 { font-size:32px; }.guide-heading>p { font-size:13px; }.guide-eyebrow { font-size:10px; margin-bottom:12px; }
 .guide-card { display:flex; flex-direction:column; }.guide-copy { padding:24px; }
 .guide-number { font-size:42px; margin-bottom:18px; }.guide-copy h2 { font-size:27px; margin-bottom:12px; }
 .guide-instruction { font-size:15px; }.guide-count { display:none; }
 .guide-screenshot { padding:14px; }.guide-screenshot img { max-height:none; }
 .guide-screenshot figcaption { font-size:9px; margin-top:10px; }
 .guide-controls { flex-wrap:wrap; gap:16px; margin-top:18px; }.guide-dots { gap:9px; }
 .guide-buttons { justify-content:space-between; width:100%; }.guide-button { min-width:100px; padding:12px 18px; }
 .guide-return-note { font-size:11px; }.guide-footer { font-size:11px; }
 .hiring-with-help { display:flex; flex-direction:column; gap:22px; padding:20px 16px 0; }
 .page-help { width:100%; padding:22px; }.page-help h2 { font-size:24px; margin-bottom:10px; }
 .page-help p:not(.guide-eyebrow) { font-size:13px; }.page-help-desktop { display:none; }
 .page-help-mobile { display:block; margin-top:14px; }.page-help-mobile summary { color:#000000; font-size:13px; min-height:30px; font-weight:550; }
 .page-help-mobile p { margin-top:8px; }.page-help-mobile a { margin-top:12px; }
 #topbar { gap:12px; padding:14px 16px; }#topbar-actions { gap:12px; }.how-to-link { padding:7px 10px; font-size:12px; }
 #topbar-actions .link-btn { font-size:12px; }.privacy-help-links { gap:12px; }.auth-help { padding:14px 20px; }
 main.auth { padding-top:32px; }.admin-help-links { gap:12px; }.guide-topbar nav { gap:14px; }
}
@media print {
 .hiring-with-help { display:block; padding:0; max-width:none; }.hiring-with-help #view { padding:0; }
 .guide-topbar,.guide-controls,.guide-return-note,.how-to-link { display:none; }
 .guide-card { break-inside:avoid; }.guide-footer { border:0; }
}

/* Keep sample screenshots monochrome within the guide. */
.guide-screenshot img { filter:grayscale(1); }

.guide-topbar,.how-to-guide,.page-help,.auth-help,.how-to-link { --ink:#000; --muted:#555; --rule:#ddd; }
.guide-topbar { color:#000; border-color:#ddd; }
.guide-topbar .link-btn { color:#000; }

/* --- style/questions.css --- */
/* Required questions and administrator reports. */
.questions-stage { min-height:100dvh; display:grid; place-items:center; padding:24px; box-sizing:border-box; }
.question-card { width:min(100%,520px); padding:32px; }
.question-card h1 { font-size:24px; line-height:1.35; margin:10px 0 16px; }
.question-choices { display:grid; gap:10px; margin:24px 0 12px; }
.question-choice { width:100%; min-height:48px; text-align:left; justify-content:flex-start; }
.question-choice[aria-pressed="true"] { border-color:var(--ink); background:var(--rule); }
.question-admin > p, .question-admin > button { margin-bottom:16px; }
.question-list { display:grid; gap:16px; margin:24px 0; }
.question-list h2 { margin:6px 0 16px; }
.question-admin .row { flex-wrap:wrap; gap:8px; }
.question-editor-wrap, .question-report { margin:24px 0; }
.question-editor { display:grid; gap:16px; margin-bottom:16px; }
.question-editor label, .question-filters label { display:grid; gap:6px; }
.question-editor textarea { min-height:90px; resize:vertical; width:100%; }
.question-admin .question-checkbox { display:flex; align-items:center; gap:8px; }
.question-checkbox input { width:auto; }
.question-choice-edit { border:1px solid var(--rule); border-radius:8px; padding:16px !important; display:grid; gap:12px; }
.question-choice-edit legend { padding:0 6px; }
.question-bounds { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.question-filters { display:flex; align-items:end; flex-wrap:wrap; gap:12px; margin:20px 0; }
.question-report-body > p { margin:12px 0; }
.question-report-body .tiles { grid-template-columns:repeat(3,1fr); margin:18px 0; }
.question-report .scroll { margin-bottom:20px; }
.question-admin button, .question-admin input { min-height:40px; }
.question-admin button:focus-visible, .question-card button:focus-visible { outline:3px solid var(--ink); outline-offset:3px; }
@media(max-width:600px) {
 .question-card { padding:24px 18px; }
 .question-card h1 { font-size:21px; }
 .question-admin header { align-items:flex-start; gap:12px; flex-direction:column; }
 .question-report-body .tiles { grid-template-columns:1fr; }
 .question-filters label { flex:1; min-width:130px; }
 .question-report table { min-width:480px; }
}

/* --- style/guidance.css --- */
/* In-context guidance: hover/focus/touch tips with More/Less, Hide/Show tips, red hover states. */
[hidden] { display:none !important; }
.tip-host { position:relative; display:inline-flex; align-items:center; gap:6px; max-width:100%; vertical-align:middle; }
.tip-host.block { display:flex; }
.tip-host.block > :first-child { flex:1 1 auto; min-width:0; }
.tip-host > .card { margin-bottom:12px; }
/* Two-class selectors so page-level `main.auth button` / `.admin button` rules do not restyle guidance controls. */
.tip-pop { display:block; position:fixed; z-index:1000; width:min(320px, calc(100vw - 16px)); padding-top:8px; top:0; left:0; }
.tip-pop.tip-up { padding-top:0; padding-bottom:8px; }
.tip-bubble { display:block; background:#191919; color:#fff; border-radius:8px; padding:14px 16px; box-shadow:0 10px 24px rgba(0,0,0,.25);
  font-size:13px; line-height:1.5; text-align:left; font-weight:400; letter-spacing:0; white-space:normal; }
.tip-short { display:block; margin:0; color:#fff; }
.tip-bubble .tip-more, .tip-page .tip-more { width:auto; min-height:0; font:inherit; font-size:12px; color:#fff; background:transparent; border:0; border-bottom:1px solid #aaa;
  border-radius:0; padding:2px 0; margin:8px 0 0; cursor:pointer; display:inline; }
.tip-detail { display:block; margin:10px 0 0; color:#ddd; font-size:13px; line-height:1.55; }
.tip-page { display:flex; flex-wrap:wrap; gap:4px 10px; align-items:baseline; margin:0 0 14px; color:var(--muted,#71717a); font-size:13px; line-height:1.5; }
.tip-page .tip-more { color:inherit; border-bottom-color:currentColor; margin:0; }
.tip-page .tip-detail { flex-basis:100%; margin:0; color:inherit; }
.tips-toggle-wrap { display:inline-flex; align-items:center; gap:6px; }
.tips-toggle-wrap .tips-toggle { width:auto; min-height:0; margin:0; font:inherit; font-size:12px; font-weight:500; color:var(--ink,#1a1a1a); background:transparent; border:1px solid var(--rule2,#d4d4d8);
  border-radius:100px; padding:7px 12px; cursor:pointer; white-space:nowrap; }
.tip-error { color:#991B1B; font-size:12px; }
.tip-error:empty { display:none; }
.tips-off .tip-page, .tips-off .page-help, .tips-off .tip-pop { display:none !important; }
/* With the page-help panel gone, the hiring layout collapses to one column. */
.tips-off .hiring-with-help { display:block; }
.tips-off .hiring-with-help #view { max-width:760px; margin:0 auto; }
/* Touch screens have nothing to hover: no tips, no toggle. */
@media (hover: none) { .tip-pop, .tip-page, .tips-toggle-wrap, .tip-error { display:none !important; } }

/* Buttons turn red on hover and while pressed. Text-style buttons turn red without a fill. */
button:not(:disabled):hover, button:not(:disabled):active, .btn:not(:disabled):hover, .btn:not(:disabled):active,
.guide-button:not([aria-disabled]):hover, .guide-button:not([aria-disabled]):active, .how-to-link:hover, .how-to-link:active {
  background:#c52c28 !important; color:#fff !important; border-color:#c52c28 !important; }
/* Text-style buttons turn red without a fill; three-class specificity beats the fill rule above. */
button.link-btn:not(:disabled):hover, button.link-btn:not(:disabled):active, .tip-page .tip-more:hover, .tip-page .tip-more:active {
  background:transparent !important; color:#c52c28 !important; border-color:#c52c28 !important; }
.tip-bubble .tip-more:hover, .tip-bubble .tip-more:active { background:transparent !important; color:#ffb3b0 !important; border-color:#ffb3b0 !important; }
button:focus-visible, .btn:focus-visible { outline:3px solid #c52c28; outline-offset:3px; }

@media (max-width:700px) {
  /* Help triggers and the toggle widen the top bars; let them wrap instead of overflowing. */
  #topbar, .auth-help { flex-wrap:wrap; row-gap:8px; }
  .guide-topbar nav, .privacy-help-links, #topbar-actions, .admin-help-links { flex-wrap:wrap; justify-content:flex-end; gap:8px 10px; }
}
@media print { .tip-pop, .tip-page, .tips-toggle-wrap, .tip-error { display:none !important; } }


