* { box-sizing: border-box; }
:root {
  --ink: #16202c;
  --muted: #5c6b7a;
  --line: #dfe6ee;
  --brand: #1f6feb;
  --brand-ink: #0b4bc4;
  --bg: #f5f8fc;
  --card: #ffffff;
  --ok: #167a3c;
  --err: #c02626;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
.fixture-banner {
  background: repeating-linear-gradient(45deg, #ffe8a3, #ffe8a3 12px, #ffd766 12px, #ffd766 24px);
  color: #5a4600;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 6px 12px;
  border-bottom: 1px solid #e6c34d;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 28px 20px 80px; }
header.site { display: flex; align-items: center; gap: 12px; padding: 18px 20px; background: var(--card); border-bottom: 1px solid var(--line); }
.logo { width: 34px; height: 34px; border-radius: 8px; background: linear-gradient(135deg, #1f6feb, #6aa8ff); display: grid; place-items: center; color: #fff; font-weight: 800; }
.brandname { font-weight: 700; }
.brandname small { display: block; color: var(--muted); font-weight: 500; font-size: 12px; }
.admin-toggle { margin-left: auto; color: var(--muted); display: inline-flex; align-items: center; justify-content: center; padding: 8px; border-radius: 8px; text-decoration: none; }
.admin-toggle:hover { background: #eef2f7; color: var(--ink); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 26px; box-shadow: 0 1px 2px rgba(16,32,44,0.04); }
h1 { margin: 0 0 6px; font-size: 26px; }
.job-meta { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.job-meta span { margin-right: 14px; }
.pill { display: inline-block; background: #eaf2ff; color: var(--brand-ink); border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 600; margin-right: 6px; }
.section-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin: 22px 0 6px; }
.btn { display: inline-block; background: var(--brand); color: #fff; border: none; border-radius: 10px; padding: 12px 20px; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; }
.btn:hover { background: var(--brand-ink); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }
label.field { display: block; margin: 16px 0 6px; font-weight: 600; font-size: 14px; }
label.field .req { color: var(--err); }
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; font-size: 15px; font-family: inherit; background: #fff; color: var(--ink);
}
textarea { min-height: 96px; resize: vertical; }
.help { color: var(--muted); font-size: 12.5px; margin-top: 4px; }
.radios, .checks { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.radios label, .checks label { display: flex; align-items: center; gap: 9px; font-weight: 500; font-size: 14.5px; }
/* reCAPTCHA v2 "I'm not a robot" widget */
.recaptcha { width: 304px; max-width: 100%; margin-top: 8px; border: 1px solid #d3d3d3; border-radius: 3px; background: #f9f9f9; box-shadow: 0 0 4px 1px rgba(0,0,0,0.08); font-family: Roboto, Arial, sans-serif; }
.recaptcha-row { display: flex; align-items: center; padding: 12px 12px 12px 10px; }
.rc-check { width: 28px; height: 28px; border: 2px solid #c1c1c1; border-radius: 2px; background: #fff; cursor: pointer; flex: 0 0 auto; position: relative; }
.rc-check:focus { outline: 2px solid #4d90fe; }
.rc-check.loading { border-color: #c1c1c1; }
.rc-check.loading::after { content: ""; position: absolute; inset: 3px; border: 3px solid #4285f4; border-top-color: transparent; border-radius: 50%; animation: rc-spin 0.8s linear infinite; }
.rc-check.checked { border-color: #34a853; }
.rc-check.checked::after { content: ""; position: absolute; left: 8px; top: 2px; width: 8px; height: 15px; border: solid #34a853; border-width: 0 3px 3px 0; transform: rotate(45deg); }
@keyframes rc-spin { to { transform: rotate(360deg); } }
.rc-label { margin-left: 12px; font-size: 15px; color: #222; }
.rc-brand { margin-left: auto; text-align: center; color: #9aa0a6; line-height: 1.1; }
.rc-brand .rc-name { font-size: 11px; color: #555; }
.rc-brand .rc-fine { font-size: 9px; }
.rc-challenge { border-top: 1px solid #e6e6e6; padding: 14px 12px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rc-challenge svg { border: 1px solid var(--line); border-radius: 4px; background: #fff; }
.linkish { background: none; border: none; color: var(--brand); cursor: pointer; font: inherit; padding: 0; text-decoration: underline; }
.result { margin-top: 18px; padding: 14px 16px; border-radius: 10px; font-size: 14.5px; display: none; }
.result.ok { display: block; background: #e9f7ef; color: var(--ok); border: 1px solid #bfe6cd; }
.result.err { display: block; background: #fdecec; color: var(--err); border: 1px solid #f4c6c6; }
.footnote { color: var(--muted); font-size: 12px; margin-top: 26px; }
