@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap");

@font-face {
  font-family: "Telegraf";
  src: url("./fonts/Telegraf-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Telegraf";
  src: url("./fonts/Telegraf-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #07121b;
  --ink-soft: #18343f;
  --muted: #667781;
  --muted-dark: #9aabb3;
  --cream: #f6fafb;
  --paper: #ffffff;
  --white: #ffffff;
  --line: #dfe7e9;
  --line-dark: #2b4652;
  --cobalt: #1677d2;
  --cobalt-dark: #0f5e9e;
  --lime: #c9f1f1;
  --orange: #ff9b69;
  --violet: #c3a5f8;
  --green: #86d6a9;
  --teal: #7ed8d1;
  --danger: #dc5b63;
  --shadow: 0 20px 50px rgba(7, 18, 27, 0.09);
  --shadow-soft: 0 8px 22px rgba(7, 18, 27, 0.06);
  --display: "Telegraf", "Avenir Next", sans-serif;
  --body: "Telegraf", "Avenir Next", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", monospace;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; background: var(--cream); }
body { min-width: 320px; min-height: 100%; margin: 0; color: var(--ink); background: var(--cream); font-family: var(--body); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .5; }
a { color: inherit; }
:focus-visible { outline: 3px solid rgba(49, 88, 232, .34); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; color: var(--ink); background: var(--lime); border-radius: 9px; transform: translateY(-160%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }
.noscript-card { max-width: 520px; margin: 15vh auto; padding: 30px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.noscript-card p { color: var(--muted); }

/* Shared primitives */
.eyebrow { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.eyebrow > span { width: 6px; height: 6px; display: inline-block; background: currentColor; border-radius: 50%; }
.eyebrow-light { color: var(--lime); }
.eyebrow-cobalt { color: var(--cobalt); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 40px; padding: 9px 14px; border: 1px solid transparent; border-radius: 10px; font-size: 12px; font-weight: 700; letter-spacing: -.01em; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.button:hover:not(:disabled) { transform: translateY(-1px); }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 5px 0 rgba(16, 26, 43, .12); }
.button-primary:hover:not(:disabled), .button-lime:hover:not(:disabled) { box-shadow: 0 8px 18px rgba(217, 243, 107, .28); }
.button-secondary { color: var(--ink-soft); background: var(--paper); border-color: var(--line); }
.button-secondary:hover:not(:disabled), .button-quiet:hover:not(:disabled) { color: var(--cobalt); border-color: #c6d0ed; background: #f4f6ff; }
.button-quiet { min-height: 36px; color: var(--ink-soft); background: rgba(255, 255, 255, .62); border-color: var(--line); }
.button-wide { width: 100%; }
.button-submit { width: 100%; min-height: 51px; margin-top: 21px; color: var(--paper); background: var(--ink); border-color: var(--ink); border-radius: 13px; font-size: 13px; box-shadow: 0 8px 0 rgba(16, 26, 43, .1); }
.button-submit:hover:not(:disabled) { color: var(--ink); background: var(--lime); border-color: var(--lime); box-shadow: 0 12px 22px rgba(217, 243, 107, .28); }
.button-submit-small { min-height: 38px; padding: 8px 12px; color: var(--ink); background: var(--lime); }
.text-link { display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; color: var(--cobalt); background: transparent; border: 0; font-size: 11px; font-weight: 700; }
.text-link:hover { color: var(--cobalt-dark); }
.toast { position: fixed; z-index: 90; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 9px; max-width: min(430px, calc(100vw - 32px)); padding: 12px 13px; color: var(--paper); background: var(--ink); border: 1px solid #33435b; border-radius: 12px; box-shadow: 0 18px 40px rgba(16, 26, 43, .22); font-size: 12px; animation: toast-in .24s ease both; }
.toast svg { flex: none; color: var(--lime); }
.toast-error svg { color: #ff9ba2; }
.toast button { display: inline-grid; place-items: center; margin-left: auto; padding: 2px; color: var(--muted-dark); background: transparent; border: 0; }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.live-dot { width: 7px; height: 7px; display: inline-block; flex: none; background: #72dfa1; border-radius: 50%; box-shadow: 0 0 0 3px rgba(114, 223, 161, .14); }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Brand + role tokens */
.brand-lockup { display: flex; align-items: center; gap: 11px; color: var(--paper); }
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { font-size: 17px; font-weight: 700; letter-spacing: -.05em; }
.brand-copy small { color: var(--muted-dark); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.stair-mark { position: relative; width: 31px; height: 29px; display: inline-block; flex: none; }
.stair-mark i { position: absolute; display: block; width: 9px; background: var(--lime); border-radius: 2px 2px 1px 1px; transform: skewY(-28deg); }
.stair-mark i:nth-child(1) { height: 12px; bottom: 0; left: 1px; opacity: .7; }
.stair-mark i:nth-child(2) { height: 19px; bottom: 0; left: 11px; opacity: .86; }
.stair-mark i:nth-child(3) { height: 27px; bottom: 0; left: 21px; }
.role-glyph { width: 31px; height: 31px; display: inline-grid; flex: none; place-items: center; color: var(--ink); border-radius: 9px; font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1; }
.role-glyph-cobalt { background: #d5ddff; color: #2946c5; }
.role-glyph-orange { background: #ffe0cc; color: #bd5e2f; }
.role-glyph-violet { background: #eadfff; color: #7047b5; }
.role-glyph-green { background: #d8f1e3; color: #317b58; }
.role-glyph-teal { background: #d7f3ef; color: #267d78; }
.status-badge { display: inline-flex; align-items: center; gap: 5px; width: max-content; padding: 5px 8px; border-radius: 99px; font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .02em; white-space: nowrap; }
.status-badge i { width: 5px; height: 5px; display: inline-block; border-radius: 50%; background: currentColor; }
.status-positive { color: #2d865b; background: #e3f6ea; }
.status-neutral { color: #586783; background: #edf1f8; }
.status-warm { color: #a36b2b; background: #fff1d8; }
.status-negative { color: #a94a55; background: #fde8eb; }

/* HR assignment workspace */
.admin-shell { min-height: 100vh; background: var(--cream); }
.admin-frame { display: flex; min-height: 100vh; }
.admin-sidebar { position: sticky; top: 0; width: 248px; height: 100vh; display: flex; flex: none; flex-direction: column; justify-content: space-between; padding: 28px 18px 18px; color: var(--paper); background: var(--ink); overflow: hidden; }
.admin-sidebar::before { position: absolute; top: 0; right: -88px; width: 230px; height: 230px; content: ""; background: radial-gradient(circle, rgba(49, 88, 232, .4), transparent 68%); pointer-events: none; }
.admin-sidebar::after { position: absolute; right: 17px; bottom: 150px; width: 150px; height: 150px; content: ""; opacity: .45; background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(217, 243, 107, .08) 10px 11px); transform: rotate(18deg); pointer-events: none; }
.sidebar-top, .sidebar-bottom { position: relative; z-index: 1; }
.sidebar-kicker { margin: 48px 10px 12px; color: #718199; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.sidebar-nav { display: grid; gap: 4px; }
.sidebar-nav-item { position: relative; display: flex; align-items: center; gap: 11px; width: 100%; min-height: 43px; padding: 10px 11px; color: #9eabc0; background: transparent; border: 1px solid transparent; border-radius: 9px; text-align: left; font-size: 12px; font-weight: 600; transition: color .16s ease, background .16s ease, border-color .16s ease; }
.sidebar-nav-item svg { color: #718199; }
.sidebar-nav-item b { margin-left: auto; color: #65748b; font-family: var(--mono); font-size: 9px; font-weight: 500; }
.sidebar-nav-item:hover { color: var(--paper); background: rgba(255, 255, 255, .05); }
.sidebar-nav-item.is-active { color: var(--paper); background: #1e2c43; border-color: #2c3c57; box-shadow: inset 3px 0 0 var(--lime); }
.sidebar-nav-item.is-active svg, .sidebar-nav-item.is-active b { color: var(--lime); }
.integration-card { padding: 14px 13px; background: #18263b; border: 1px solid #2a3a54; border-radius: 12px; }
.integration-card-head { display: flex; align-items: center; gap: 7px; color: #e6ecf5; font-size: 11px; font-weight: 700; }
.integration-card-head button { display: inline-grid; place-items: center; margin-left: auto; padding: 3px; color: #8494aa; background: transparent; border: 0; }
.integration-card-head button:hover { color: var(--lime); }
.integration-card p { margin: 10px 0 8px; color: #8494aa; font-size: 10px; line-height: 1.55; }
.integration-card small { color: #64748b; font-family: var(--mono); font-size: 9px; }
.sidebar-footer-line { display: flex; justify-content: space-between; margin: 16px 3px 0; color: #5e6e84; font-family: var(--mono); font-size: 9px; }
.admin-content { min-width: 0; flex: 1; }
.admin-content-inner { max-width: 1560px; min-height: 100vh; margin: 0 auto; }
.admin-topbar { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 42px; background: rgba(244, 243, 238, .88); border-bottom: 1px solid rgba(224, 226, 222, .76); }
.admin-breadcrumb { display: flex; align-items: center; gap: 10px; color: var(--muted); font-family: var(--mono); font-size: 10px; }
.admin-breadcrumb b { color: #b3bbc5; font-weight: 400; }
.admin-breadcrumb strong { color: var(--ink-soft); font-weight: 600; }
.admin-topbar-actions { display: flex; align-items: center; gap: 12px; }
.topbar-connection { display: inline-flex; align-items: center; gap: 7px; color: #5f6e82; font-family: var(--mono); font-size: 10px; }
.profile-button { display: inline-flex; align-items: center; gap: 8px; padding: 6px 8px 6px 7px; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); border-radius: 10px; font-size: 11px; font-weight: 700; }
.profile-button::first-letter { color: var(--cobalt); }
.profile-button span { color: var(--muted); font-size: 10px; font-weight: 500; }
.admin-main { padding: 36px 42px 80px; }
.admin-hero { position: relative; display: flex; min-height: 285px; margin-bottom: 18px; padding: 39px 44px; color: var(--paper); background: var(--ink); border-radius: 21px; overflow: hidden; isolation: isolate; }
.admin-hero::before { position: absolute; z-index: -1; inset: 0; content: ""; opacity: .42; background: radial-gradient(circle at 86% 15%, #3e67ff 0, transparent 27%), radial-gradient(circle at 64% 110%, #1d367f 0, transparent 46%), repeating-linear-gradient(132deg, transparent 0 33px, rgba(255,255,255,.034) 33px 34px); }
.admin-hero::after { position: absolute; z-index: -1; right: -40px; bottom: -110px; width: 490px; height: 250px; content: ""; border: 1px solid rgba(217, 243, 107, .2); border-radius: 50%; transform: rotate(-17deg); box-shadow: 0 0 0 18px rgba(217, 243, 107, .03), 0 0 0 36px rgba(217, 243, 107, .02); }
.hero-copy { max-width: 620px; }
.hero-copy h1 { margin: 18px 0 13px; color: #f7f8fb; font-family: var(--display); font-size: clamp(31px, 3.5vw, 49px); font-weight: 600; letter-spacing: -.045em; line-height: .98; }
.hero-copy h1 em { color: var(--lime); font-style: normal; }
.hero-copy > p { max-width: 500px; margin: 0; color: #a9b6ca; font-size: 13px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 17px; margin-top: 26px; }
.button-lime { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.hero-text-button { display: inline-flex; align-items: center; gap: 8px; padding: 8px 0; color: #c0cbe0; background: transparent; border: 0; font-size: 11px; font-weight: 600; }
.hero-text-button:hover { color: var(--lime); }
.hero-signal { position: absolute; top: 24px; right: 44px; width: 290px; height: 230px; }
.signal-orbit { position: absolute; top: 30px; left: 43px; width: 175px; height: 175px; border: 1px solid rgba(217, 243, 107, .28); border-radius: 50%; transform: rotate(-24deg) skewX(-17deg); }
.signal-orbit-two { top: 54px; left: 66px; width: 130px; height: 130px; border-color: rgba(91, 123, 255, .55); transform: rotate(32deg) skewX(19deg); }
.signal-core { position: absolute; top: 88px; left: 113px; width: 76px; height: 76px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--lime); border-radius: 50%; color: var(--ink); box-shadow: 0 0 0 8px rgba(217, 243, 107, .08); }
.signal-core span { font-family: var(--display); font-size: 28px; line-height: 1; }
.signal-core small { margin-top: 5px; font-family: var(--mono); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.signal-note { position: absolute; display: flex; flex-direction: column; gap: 2px; padding: 8px 9px; background: rgba(31, 47, 74, .78); border: 1px solid #3e506d; border-radius: 8px; backdrop-filter: blur(5px); }
.signal-note b { color: var(--lime); font-family: var(--display); font-size: 19px; font-weight: 600; line-height: 1; }
.signal-note span { color: #a8b6ca; font-family: var(--mono); font-size: 8px; white-space: nowrap; }
.signal-note-top { top: 12px; right: 6px; }
.signal-note-bottom { right: 0; bottom: 8px; }
.signal-stair { position: absolute; display: block; width: 34px; height: 12px; border-top: 2px solid var(--lime); border-right: 2px solid var(--lime); transform: skewY(-28deg); opacity: .75; }
.signal-stair-a { top: 63px; left: 14px; }.signal-stair-b { top: 78px; left: 14px; opacity: .5; }.signal-stair-c { top: 93px; left: 14px; opacity: .28; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 11px; margin-bottom: 18px; }
.metric-card { position: relative; display: flex; align-items: flex-start; gap: 12px; min-height: 100px; padding: 17px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 3px 0 rgba(16, 26, 43, .025); }
.metric-card-blue { background: #f0f3ff; border-color: #d9e0ff; }
.metric-icon { width: 31px; height: 31px; display: grid; place-items: center; flex: none; color: var(--cobalt); background: #e4e9ff; border-radius: 8px; }.metric-icon-lime { color: #66820d; background: #eaf7af; }.metric-icon-orange { color: #b96735; background: #ffeadb; }.metric-icon-green { color: #31815a; background: #ddf4e6; }
.metric-card > div:nth-child(2) { display: flex; flex-direction: column; min-width: 0; }
.metric-card span { color: var(--muted); font-size: 10px; font-weight: 600; }.metric-card strong { margin-top: 5px; color: var(--ink); font-family: var(--display); font-size: 26px; font-weight: 600; line-height: 1; letter-spacing: -.03em; }.metric-card small { margin-top: 7px; color: #98a1ae; font-family: var(--mono); font-size: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.metric-arrow { position: absolute; top: 16px; right: 16px; color: #b4bdc8; font-size: 14px; font-weight: 500; }
.admin-work-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(350px, .88fr); gap: 18px; align-items: start; }
.panel { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-soft); }
.applicant-panel { min-width: 0; overflow: hidden; }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; padding: 20px 21px 16px; border-bottom: 1px solid var(--line); }.panel-heading h2 { margin: 7px 0 0; color: var(--ink); font-family: var(--display); font-size: 23px; font-weight: 600; letter-spacing: -.03em; }.panel-live-label { display: inline-flex; align-items: center; gap: 7px; margin-top: 5px; color: #5d6b7c; font-family: var(--mono); font-size: 9px; }.panel-live-label .live-dot { width: 5px; height: 5px; box-shadow: none; }.assignment-index { color: #a9b2bc; font-family: var(--mono); font-size: 10px; }
.applicant-toolbar { display: flex; gap: 8px; padding: 13px 15px; background: #fbfbf7; border-bottom: 1px solid var(--line); }.search-box, .filter-box { display: flex; align-items: center; gap: 7px; min-width: 0; height: 35px; padding: 0 10px; color: #8b96a3; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; }.search-box { flex: 1; }.search-box input { width: 100%; min-width: 0; padding: 0; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 11px; }.search-box input::placeholder { color: #a6aeb8; }.filter-box { width: 145px; }.filter-box select { width: 100%; min-width: 0; color: var(--ink-soft); background: transparent; border: 0; outline: 0; appearance: none; font-size: 10px; }.filter-box svg:last-child { flex: none; }
.applicant-table-head, .recent-table-head { display: grid; grid-template-columns: minmax(170px, 1.5fr) minmax(105px, .9fr) 75px 20px; gap: 10px; padding: 10px 15px 8px 21px; color: #9aa5b0; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }.applicant-list { min-height: 296px; max-height: 405px; overflow: auto; }.applicant-row { display: grid; grid-template-columns: 34px minmax(150px, 1.5fr) minmax(105px, .9fr) 75px 20px; align-items: center; gap: 10px; width: 100%; padding: 12px 15px 12px 21px; color: var(--ink); background: var(--paper); border: 0; border-top: 1px solid #eff0ed; text-align: left; transition: background .16s ease, box-shadow .16s ease; }.applicant-row:hover { background: #f7f8ff; }.applicant-row.is-selected { background: #f1f4ff; box-shadow: inset 3px 0 0 var(--cobalt); }.applicant-avatar { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; font-family: var(--mono); font-size: 9px; font-weight: 600; }.applicant-avatar-cobalt { color: #334ecc; background: #dfe5ff; }.applicant-avatar-orange { color: #a8582d; background: #ffe3d1; }.applicant-avatar-violet { color: #6e48aa; background: #e9ddff; }.applicant-avatar-green { color: #2d7955; background: #d9f2e2; }.applicant-avatar-teal { color: #267972; background: #d7f2ed; }.applicant-row-copy { min-width: 0; display: flex; flex-direction: column; }.applicant-row-copy strong { overflow: hidden; color: var(--ink-soft); font-size: 11px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }.applicant-row-copy small { margin-top: 4px; overflow: hidden; color: #5e6c7d; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }.applicant-row-copy em { margin-top: 4px; overflow: hidden; color: #a2aab4; font-family: var(--mono); font-size: 8px; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }.applicant-row-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; min-width: 0; }.applicant-row-meta time { color: #9da7b3; font-family: var(--mono); font-size: 8px; }.row-unassigned { color: #a3abb6; font-family: var(--mono); font-size: 9px; }.row-chevron { display: grid; place-items: center; color: #b4bdc8; }.applicant-row.is-selected .row-chevron { color: var(--cobalt); }.loading-state, .empty-state { min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 30px; color: #8995a3; text-align: center; font-size: 11px; }.empty-state strong { color: var(--ink-soft); font-size: 12px; }.empty-state span { max-width: 220px; color: #9da7b2; font-size: 10px; line-height: 1.5; }.panel-footnote { display: flex; align-items: center; gap: 7px; padding: 11px 20px; color: #9aa4af; background: #fbfbf8; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 8px; }.panel-footnote svg { color: #76a2ed; }
.assignment-panel { position: sticky; top: 18px; overflow: hidden; }.assignment-applicant { display: flex; align-items: center; gap: 11px; padding: 17px 20px 4px; }.large-avatar { width: 42px; height: 42px; border-radius: 12px; font-size: 11px; }.assignment-applicant > div { min-width: 0; display: flex; flex-direction: column; }.assignment-applicant strong { overflow: hidden; color: var(--ink); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }.assignment-applicant span { margin-top: 3px; overflow: hidden; color: #697687; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.assignment-applicant small { margin-top: 5px; color: #9ca6b0; font-family: var(--mono); font-size: 8px; }.select-field { display: flex; flex-direction: column; gap: 7px; padding: 17px 20px 0; }.select-field > span, .form-field .field-label, .link-row-fields label > span, .link-note-field > span { display: flex; align-items: center; gap: 6px; color: #526075; font-size: 10px; font-weight: 700; }.select-field > span b, .field-label b, .answer-field > span b { color: var(--cobalt); font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }.select-wrap { position: relative; display: flex; align-items: center; gap: 8px; }.select-wrap select { width: 100%; height: 39px; padding: 0 29px 0 42px; color: var(--ink); background: #fbfcf8; border: 1px solid var(--line); border-radius: 8px; outline: 0; appearance: none; font-size: 11px; font-weight: 600; }.select-wrap > .role-glyph { position: absolute; z-index: 1; left: 5px; width: 29px; height: 29px; border-radius: 7px; font-size: 16px; }.select-wrap > svg { position: absolute; right: 10px; color: #8995a3; pointer-events: none; }.select-wrap select:focus { border-color: #a9b9ee; box-shadow: 0 0 0 3px #edf0ff; }
.kit-summary { margin: 16px 20px 0; padding: 13px; border: 1px solid #dce3ff; border-radius: 10px; background: #f3f5ff; }.kit-summary-orange { border-color: #ffdfcc; background: #fff5ee; }.kit-summary-violet { border-color: #e7d9ff; background: #faf7ff; }.kit-summary-green { border-color: #d7efdf; background: #f3fbf6; }.kit-summary-teal { border-color: #d3eeeb; background: #f1fbfa; }.kit-summary-top { display: flex; align-items: center; gap: 9px; }.kit-summary-top .role-glyph { width: 28px; height: 28px; border-radius: 7px; font-size: 16px; }.kit-summary-top > div { display: flex; min-width: 0; flex-direction: column; }.kit-summary-top strong { overflow: hidden; color: var(--ink-soft); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.kit-summary-top span { margin-top: 4px; color: #8591a2; font-family: var(--mono); font-size: 8px; }.kit-summary p { margin: 11px 0 10px; color: #6e7b8e; font-size: 10px; line-height: 1.5; }.kit-question-dots { display: flex; gap: 4px; }.kit-question-dots span { min-width: 23px; padding: 4px 3px; color: #7482ca; background: rgba(255, 255, 255, .72); border: 1px solid rgba(128, 146, 232, .25); border-radius: 4px; font-family: var(--mono); font-size: 8px; text-align: center; }.kit-summary-orange .kit-question-dots span { color: #a66c4b; border-color: #f1c9b0; }.kit-summary-violet .kit-question-dots span { color: #8061ae; border-color: #dccaf8; }.kit-summary-green .kit-question-dots span { color: #4e8e6d; border-color: #c8e8d3; }.kit-summary-teal .kit-question-dots span { color: #4a8984; border-color: #c3e3df; }
.kit-question-preview { margin: 12px 20px 0; border: 1px solid var(--line); border-radius: 9px; background: #fbfcf8; }.kit-question-preview summary { display: flex; align-items: center; gap: 6px; padding: 10px 11px; color: #5c6a7d; font-size: 9px; font-weight: 700; cursor: pointer; list-style: none; }.kit-question-preview summary::-webkit-details-marker { display: none; }.kit-question-preview summary > svg:first-child { color: var(--cobalt); }.kit-question-preview summary > span { display: inline-flex; margin-left: auto; color: #9ba5af; transition: transform .16s ease; }.kit-question-preview[open] summary > span { transform: rotate(180deg); }.kit-question-preview ol { display: grid; gap: 9px; margin: 0; padding: 0 12px 12px 30px; }.kit-question-preview li { padding-left: 2px; color: #798697; font-size: 9px; line-height: 1.45; }.kit-question-preview li::marker { color: var(--cobalt); font-family: var(--mono); font-size: 8px; }.kit-question-preview li strong { display: block; color: var(--ink-soft); font-size: 9px; }.kit-question-preview li p { margin: 3px 0 0; color: #8b96a3; font-size: 8px; line-height: 1.45; }
.generated-link-block { margin: 17px 20px 0; padding: 13px; background: #f8f8f4; border: 1px solid var(--line); border-radius: 10px; }.generated-link-label { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #526075; font-size: 10px; font-weight: 700; }.generated-link-label i { display: inline-flex; align-items: center; gap: 4px; color: #8794a4; font-family: var(--mono); font-size: 8px; font-style: normal; font-weight: 500; }.generated-link-field { display: flex; margin-top: 9px; }.generated-link-field input { width: 100%; min-width: 0; height: 35px; padding: 0 9px; color: #6c7889; background: var(--paper); border: 1px solid #dfe3df; border-right: 0; border-radius: 7px 0 0 7px; outline: 0; font-family: var(--mono); font-size: 8px; text-overflow: ellipsis; }.generated-link-field button { width: 37px; display: grid; place-items: center; flex: none; color: var(--cobalt); background: #e9edff; border: 1px solid #d2daf8; border-radius: 0 7px 7px 0; }.generated-link-field button:hover:not(:disabled) { background: #dce4ff; }.generated-link-block > small { display: block; margin-top: 8px; color: #9aa3ad; font-size: 9px; line-height: 1.45; }.assignment-actions { display: flex; gap: 8px; padding: 17px 20px 0; }.assignment-actions .button-primary { flex: 1; }.assignment-actions .button-secondary { min-width: 89px; }.assignment-state { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 14px 20px 18px; color: #9aa3ad; font-family: var(--mono); font-size: 8px; }.assignment-state > button { display: inline-flex; align-items: center; gap: 4px; margin-left: auto; padding: 0; color: var(--cobalt); background: transparent; border: 0; font-family: var(--mono); font-size: 8px; }.assignment-tip { display: flex; align-items: center; gap: 7px; padding: 15px 20px 18px; color: #8b95a2; font-size: 9px; line-height: 1.4; }.assignment-tip svg { flex: none; color: #8eaf22; }
.recent-strip { margin-top: 18px; padding: 20px 21px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-soft); }.recent-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }.recent-heading h2 { margin: 7px 0 0; font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -.03em; }.recent-table { margin-top: 15px; }.recent-table-head { grid-template-columns: minmax(170px, 1.5fr) minmax(105px, .9fr) 100px 110px; padding: 0 0 8px; }.recent-row { display: grid; grid-template-columns: minmax(170px, 1.5fr) minmax(105px, .9fr) 100px 110px; align-items: center; gap: 10px; width: 100%; padding: 11px 0; color: var(--ink); background: transparent; border: 0; border-top: 1px solid #eff0ed; text-align: left; }.recent-row:hover { background: #fafaf7; }.recent-row > span:first-child { display: flex; flex-direction: column; min-width: 0; }.recent-row b { overflow: hidden; color: var(--ink-soft); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.recent-row small { margin-top: 3px; color: #9da7b2; font-family: var(--mono); font-size: 8px; }.recent-role { display: inline-flex; align-items: center; gap: 6px; color: #667386; font-size: 10px; }.recent-role .role-glyph { width: 23px; height: 23px; border-radius: 6px; font-size: 13px; }.recent-row time { color: #9ba5b0; font-family: var(--mono); font-size: 8px; }.recent-empty { padding: 24px 0 7px; color: #9aa5af; font-size: 11px; }
.library-section { padding-top: 62px; }.library-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 18px; }.library-heading h2 { max-width: 530px; margin: 10px 0 8px; font-family: var(--display); font-size: clamp(26px, 3vw, 37px); font-weight: 600; letter-spacing: -.04em; line-height: 1.03; }.library-heading p { max-width: 520px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }.library-count { color: var(--cobalt); font-family: var(--display); font-size: 29px; font-weight: 600; line-height: .9; text-align: right; }.library-count small { display: block; margin-top: 8px; color: #9da6b0; font-family: var(--mono); font-size: 8px; font-weight: 500; line-height: 1.3; text-transform: uppercase; }.role-library-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }.role-library-card { position: relative; min-height: 170px; display: flex; flex-direction: column; padding: 14px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-top: 3px solid #d5ddff; border-radius: 11px; text-align: left; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }.role-library-card:hover { transform: translateY(-4px); border-color: #bfcaf7; box-shadow: 0 14px 28px rgba(16, 26, 43, .1); }.role-card-orange { border-top-color: var(--orange); }.role-card-violet { border-top-color: var(--violet); }.role-card-green { border-top-color: var(--green); }.role-card-teal { border-top-color: var(--teal); }.role-library-top { display: flex; align-items: center; gap: 7px; }.role-library-top .role-glyph { width: 27px; height: 27px; border-radius: 7px; font-size: 15px; }.role-library-top > span { color: #98a2ae; font-family: var(--mono); font-size: 8px; }.role-library-top > svg { margin-left: auto; color: #abb4c0; }.role-library-card h3 { margin: 16px 0 7px; color: var(--ink-soft); font-size: 12px; line-height: 1.27; }.role-library-card p { margin: 0; color: #7b8797; font-size: 9px; line-height: 1.45; }.role-library-bottom { display: flex; justify-content: space-between; gap: 5px; margin-top: auto; padding-top: 13px; color: #a1aab4; font-family: var(--mono); font-size: 8px; }.role-library-bottom span:last-child { color: #5d6b7e; }.library-callout { display: flex; align-items: center; gap: 12px; margin-top: 12px; padding: 14px 16px; color: #5f6c7d; background: #e9f0ff; border: 1px solid #d1dcff; border-radius: 11px; }.library-callout > svg { flex: none; color: var(--cobalt); }.library-callout > div { display: flex; min-width: 0; flex-direction: column; gap: 3px; }.library-callout strong { color: var(--ink-soft); font-size: 11px; }.library-callout span { color: #71809a; font-size: 10px; line-height: 1.45; }.library-callout button { display: inline-flex; align-items: center; gap: 6px; flex: none; margin-left: auto; padding: 7px 9px; color: var(--cobalt); background: transparent; border: 0; font-size: 10px; font-weight: 700; }

/* Candidate workspace */
.candidate-shell { min-height: 100vh; color: var(--ink); background: var(--cream); background-image: radial-gradient(circle at 12% 7%, rgba(49, 88, 232, .08), transparent 24%), radial-gradient(circle at 89% 34%, rgba(217, 243, 107, .12), transparent 22%); }
.candidate-header { position: sticky; z-index: 20; top: 0; height: 70px; background: rgba(244, 243, 238, .9); border-bottom: 1px solid rgba(224, 226, 222, .88); backdrop-filter: blur(15px); }.candidate-header-inner { max-width: 1280px; height: 100%; display: flex; align-items: center; gap: 15px; margin: 0 auto; padding: 0 32px; }.candidate-header .brand-lockup { color: var(--ink); }.candidate-header .brand-copy small { color: #8b95a1; }.candidate-header .stair-mark i { background: var(--cobalt); }.candidate-header-divider { width: 1px; height: 22px; background: #d8dcd9; }.candidate-header-label { color: #6b7788; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }.candidate-header-right { display: flex; align-items: center; gap: 17px; margin-left: auto; }.save-status { display: inline-flex; align-items: center; gap: 5px; color: #69816d; font-family: var(--mono); font-size: 9px; }.candidate-ref { color: #929ba6; font-family: var(--mono); font-size: 9px; }.candidate-ref b { color: #596678; font-weight: 600; }.header-help { display: inline-flex; align-items: center; gap: 5px; padding: 7px 9px; color: #697688; background: rgba(255, 254, 250, .8); border: 1px solid var(--line); border-radius: 8px; font-size: 10px; font-weight: 600; }.header-help:hover { color: var(--cobalt); border-color: #c9d4fa; }
.candidate-layout { max-width: 1280px; display: grid; grid-template-columns: 218px minmax(0, 1fr); gap: 44px; margin: 0 auto; padding: 37px 32px 70px; }.progress-rail { position: sticky; top: 105px; align-self: start; }.progress-rail-top { padding: 16px 15px 17px; background: rgba(255, 254, 250, .64); border: 1px solid var(--line); border-radius: 13px; }.progress-number { display: flex; align-items: baseline; gap: 6px; margin-top: 15px; }.progress-number strong { color: var(--ink); font-family: var(--display); font-size: 31px; font-weight: 600; letter-spacing: -.04em; }.progress-number span { color: #9ba4ae; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }.progress-track { height: 5px; margin-top: 10px; overflow: hidden; background: #e2e5e0; border-radius: 99px; }.progress-track i { display: block; height: 100%; min-width: 0; background: var(--cobalt); border-radius: inherit; transition: width .28s ease; }.progress-nav { display: grid; gap: 2px; margin-top: 15px; }.progress-nav-item { display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 7px; color: #8a96a5; background: transparent; border: 0; border-radius: 8px; text-align: left; }.progress-nav-item:hover { color: var(--ink-soft); background: rgba(255, 254, 250, .7); }.progress-nav-item > span:last-child { display: flex; min-width: 0; flex-direction: column; gap: 4px; }.progress-nav-item strong { color: inherit; font-size: 10px; font-weight: 700; }.progress-nav-item small { color: #adb4bc; font-family: var(--mono); font-size: 8px; }.progress-index { width: 24px; height: 24px; display: grid; place-items: center; flex: none; color: #9da7b3; background: #e9ebe8; border-radius: 7px; font-family: var(--mono); font-size: 8px; }.progress-nav-item.is-done { color: #5d6f68; }.progress-nav-item.is-done .progress-index { color: #2c885b; background: #dff2e5; }.rail-note { display: flex; flex-direction: column; gap: 5px; margin-top: 31px; padding: 13px; color: #6e7c8c; background: #eaf0ff; border: 1px solid #d5dfff; border-radius: 11px; }.rail-note-icon { width: 27px; height: 27px; display: grid; place-items: center; color: var(--cobalt); background: #dce5ff; border-radius: 7px; }.rail-note strong { color: var(--ink-soft); font-size: 10px; }.rail-note span { font-size: 9px; line-height: 1.45; }.rail-footer { display: flex; align-items: flex-start; gap: 6px; margin: 18px 4px 0; color: #a3acb5; font-family: var(--mono); font-size: 8px; line-height: 1.4; }.rail-footer svg { flex: none; color: #7da5eb; }
.candidate-main { min-width: 0; }.candidate-main-inner { max-width: 840px; margin: 0 auto; }.candidate-intro { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 19px; box-shadow: var(--shadow-soft); }.candidate-intro-main { padding: 35px 39px 29px; }.candidate-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; }.candidate-intro h1 { margin: 17px 0 13px; color: var(--ink); font-family: var(--display); font-size: clamp(34px, 4.2vw, 51px); font-weight: 600; letter-spacing: -.055em; line-height: .98; }.candidate-intro h1 em { color: var(--cobalt); font-style: normal; }.candidate-intro-main p { max-width: 570px; margin: 0; color: #748092; font-size: 12px; line-height: 1.7; }.assessment-stamp { min-width: 104px; display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 27px; padding: 12px 9px 11px; color: #718099; background: #f7f8f4; border: 1px solid var(--line); border-radius: 11px; text-align: center; }.assessment-stamp .role-glyph { width: 32px; height: 32px; }.assessment-stamp strong { color: var(--ink-soft); font-family: var(--mono); font-size: 9px; }.assessment-stamp small { color: #a6afb9; font-family: var(--mono); font-size: 8px; }.intro-trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 22px; margin-top: 22px; padding-top: 16px; border-top: 1px solid #eef0ed; color: #7e8998; font-family: var(--mono); font-size: 8px; }.intro-trust-row span { display: inline-flex; align-items: center; gap: 5px; }.intro-trust-row svg:first-child { color: #56a978; }.intro-trust-row span:last-child svg { color: #779fdf; }
.candidate-role-banner { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 14px 20px; background: #eff2ff; border-top: 1px solid #dbe2ff; }.candidate-role-orange { background: #fff2e9; border-top-color: #ffe0cd; }.candidate-role-violet { background: #f7f1ff; border-top-color: #eadbff; }.candidate-role-green { background: #eef9f1; border-top-color: #d9efdf; }.candidate-role-teal { background: #ebf8f6; border-top-color: #d1eeea; }.candidate-role-banner > div { display: flex; align-items: center; gap: 10px; }.candidate-role-banner .role-glyph { width: 30px; height: 30px; }.candidate-role-banner > div > span { display: flex; flex-direction: column; gap: 3px; }.candidate-role-banner small { color: #7f8cb0; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }.candidate-role-banner strong { color: var(--ink-soft); font-size: 11px; }.candidate-role-banner button { display: inline-flex; align-items: center; gap: 7px; padding: 7px 0; color: var(--cobalt); background: transparent; border: 0; font-size: 10px; font-weight: 700; }.candidate-role-orange button { color: #a95d35; }.candidate-role-violet button { color: #704ca8; }.candidate-role-green button { color: #3d805b; }.candidate-role-teal button { color: #2e7d78; }
.candidate-section { scroll-margin-top: 92px; margin-top: 40px; }.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 13px; }.section-heading > div:first-child { display: flex; align-items: flex-start; gap: 11px; }.section-number { width: 30px; height: 30px; display: grid; place-items: center; flex: none; color: var(--cobalt); background: #e4e9ff; border-radius: 8px; font-family: var(--mono); font-size: 9px; font-weight: 600; }.section-heading h2 { margin: 6px 0 0; color: var(--ink); font-family: var(--display); font-size: 27px; font-weight: 600; letter-spacing: -.04em; line-height: 1; }.section-subtitle { max-width: 620px; margin: 8px 0 0; color: #7d8998; font-size: 11px; line-height: 1.55; }.section-status { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; color: #9ba5b0; font-family: var(--mono); font-size: 8px; white-space: nowrap; }.section-status.is-ready { color: #3b8d61; }.section-card { padding: 22px 23px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-soft); }.section-card-intro, .samples-note { display: flex; align-items: flex-start; gap: 10px; padding-bottom: 17px; border-bottom: 1px solid #eef0ed; }.mini-icon { width: 30px; height: 30px; display: grid; place-items: center; flex: none; border-radius: 8px; }.mini-icon-cobalt { color: var(--cobalt); background: #e5eaff; }.mini-icon-lime { color: #718c14; background: #edf7c3; }.section-card-intro > div:last-child, .samples-note > div:last-child { display: flex; min-width: 0; flex-direction: column; gap: 4px; }.section-card-intro strong, .samples-note strong { color: var(--ink-soft); font-size: 11px; }.section-card-intro span, .samples-note span { color: #8893a1; font-size: 10px; line-height: 1.5; }
.form-grid { display: grid; gap: 16px 13px; margin-top: 20px; }.form-grid-two { grid-template-columns: 1fr 1fr; }.form-field { display: flex; min-width: 0; flex-direction: column; gap: 7px; }.form-field > input, .form-field > textarea { width: 100%; min-width: 0; color: var(--ink); background: #fcfcf8; border: 1px solid #dfe3df; border-radius: 8px; outline: 0; font-size: 11px; transition: border-color .16s ease, box-shadow .16s ease, background .16s ease; }.form-field > input { height: 40px; padding: 0 11px; }.form-field > textarea { min-height: 83px; padding: 10px 11px; resize: vertical; line-height: 1.55; }.form-field > input::placeholder, .form-field > textarea::placeholder { color: #adb5bd; }.form-field > input:focus, .form-field > textarea:focus, .candidate-select-wrap select:focus { background: var(--paper); border-color: #9eb0f1; box-shadow: 0 0 0 3px #edf0ff; }.form-field .field-label i { display: inline-flex; align-items: center; gap: 3px; color: #9ba4ae; font-family: var(--mono); font-size: 8px; font-style: normal; font-weight: 500; }.form-field small { color: #9ba5af; font-family: var(--mono); font-size: 8px; }.field-wide { grid-column: 1 / -1; margin-top: 2px; }.form-grid + .form-field { margin-top: 18px; }.candidate-select-wrap { position: relative; display: block; }.candidate-select-wrap select { width: 100%; height: 40px; padding: 0 32px 0 11px; color: var(--ink); background: #fcfcf8; border: 1px solid #dfe3df; border-radius: 8px; outline: 0; appearance: none; font-size: 11px; }.candidate-select-wrap > svg { position: absolute; top: 13px; right: 10px; color: #8c97a4; pointer-events: none; }.textarea-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #a2abb5; font-family: var(--mono); font-size: 8px; }.textarea-meta small { color: inherit; }.textarea-meta b { color: #6d7a8b; font-weight: 500; }.has-error > input, .has-error > textarea, .has-error .candidate-select-wrap select { border-color: #e89ca1; background: #fff9f9; }.field-error { display: block; margin-top: -2px; color: var(--danger) !important; font-family: var(--mono); font-size: 8px !important; font-style: normal; }
.role-context-strip { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; padding: 11px 12px; background: #eef1ff; border: 1px solid #dbe2ff; border-radius: 10px; }.role-context-orange { background: #fff2e8; border-color: #ffe0ce; }.role-context-violet { background: #f8f2ff; border-color: #eadcff; }.role-context-green { background: #eef9f1; border-color: #d7efdf; }.role-context-teal { background: #ebf8f6; border-color: #d2eeea; }.role-context-strip .role-glyph { width: 29px; height: 29px; border-radius: 7px; }.role-context-strip > div { display: flex; min-width: 0; flex-direction: column; gap: 3px; }.role-context-strip > div span { color: #8792ad; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }.role-context-strip > div strong { overflow: hidden; color: var(--ink-soft); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.role-context-strip > label { display: flex; align-items: center; gap: 6px; margin-left: auto; color: #8290a3; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }.role-context-strip select { max-width: 215px; padding: 5px 22px 5px 6px; color: var(--cobalt); background: transparent; border: 0; outline: 0; appearance: none; font-family: var(--body); font-size: 10px; font-weight: 700; text-transform: none; }.role-context-strip label { position: relative; }.role-context-strip label > svg { margin-left: -22px; color: #8290a3; pointer-events: none; }
.scenario-list { display: grid; gap: 12px; }.scenario-card { padding: 20px 21px 19px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-soft); transition: border-color .18s ease, box-shadow .18s ease; }.scenario-card:focus-within { border-color: #c1cdf7; box-shadow: 0 9px 25px rgba(49, 88, 232, .08); }.scenario-card.has-error { border-color: #edb4b8; }.scenario-card-head { display: flex; align-items: flex-start; gap: 10px; }.scenario-number { width: 30px; height: 30px; display: grid; place-items: center; flex: none; color: var(--cobalt); background: #e7ebff; border-radius: 8px; font-family: var(--mono); font-size: 9px; font-weight: 600; }.scenario-card-title { min-width: 0; }.scenario-kicker { color: #9aa4b0; font-family: var(--mono); font-size: 8px; letter-spacing: .04em; text-transform: uppercase; }.scenario-kicker span { color: #c2c8cf; }.scenario-card-title h3 { margin: 5px 0 0; color: var(--ink); font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.035em; line-height: 1.05; }.response-chip { display: inline-flex; align-items: center; gap: 4px; margin-left: auto; padding: 5px 7px; color: #718099; background: #f2f4f7; border-radius: 6px; font-family: var(--mono); font-size: 8px; white-space: nowrap; }.scenario-prompt { margin: 17px 0 13px; color: #44536a; font-size: 12px; line-height: 1.68; }.answer-shape { display: flex; align-items: flex-start; gap: 7px; margin: 0 0 16px; padding: 9px 10px; background: #f5f8ff; border-left: 2px solid #aec0fa; border-radius: 0 7px 7px 0; }.answer-shape > span { display: inline-flex; align-items: center; gap: 4px; flex: none; color: var(--cobalt); font-family: var(--mono); font-size: 8px; font-weight: 600; text-transform: uppercase; }.answer-shape > p { margin: 0; color: #7b88a1; font-size: 9px; line-height: 1.45; }.answer-field { display: flex; flex-direction: column; gap: 7px; }.answer-field > span { display: flex; align-items: center; gap: 6px; color: #526075; font-size: 10px; font-weight: 700; }.answer-field textarea { width: 100%; min-height: 133px; padding: 11px; color: var(--ink); background: #fcfcf8; border: 1px solid #dfe3df; border-radius: 8px; outline: 0; resize: vertical; font-size: 11px; line-height: 1.6; }.answer-field textarea::placeholder { color: #adb5bd; }.answer-field textarea:focus { background: var(--paper); border-color: #9eb0f1; box-shadow: 0 0 0 3px #edf0ff; }.answer-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #a2abb5; font-family: var(--mono); font-size: 8px; }.answer-meta small { color: inherit; }.answer-meta b { color: #6d7a8b; font-weight: 500; }.scenario-footnote { display: flex; align-items: center; gap: 7px; margin-top: 12px; padding: 10px 12px; color: #8b96a4; background: rgba(255, 254, 250, .72); border: 1px dashed #d9ded9; border-radius: 9px; font-family: var(--mono); font-size: 8px; }.scenario-footnote svg { color: #9baecf; }
.samples-card { padding-bottom: 18px; }.samples-note { padding-bottom: 15px; }.link-list { display: grid; gap: 9px; margin-top: 15px; }.link-row { padding: 13px 13px 12px; background: #fbfcf8; border: 1px solid #e4e7e2; border-radius: 10px; }.link-row.has-error { border-color: #e8a8ac; background: #fffafa; }.link-row-top { display: flex; align-items: center; gap: 8px; }.link-index { width: 23px; height: 23px; display: grid; place-items: center; color: #6e7c8d; background: #e9ece8; border-radius: 6px; font-family: var(--mono); font-size: 8px; }.link-row-label { display: flex; align-items: baseline; gap: 6px; color: #4e5d70; font-size: 10px; font-weight: 700; }.link-row-label small { color: #a1aab4; font-family: var(--mono); font-size: 8px; font-weight: 400; }.icon-only-button { display: inline-grid; place-items: center; margin-left: auto; padding: 3px; color: #9ba6b2; background: transparent; border: 0; border-radius: 5px; }.icon-only-button:hover { color: var(--danger); background: #fff0f1; }.link-row-fields { display: grid; grid-template-columns: 205px minmax(0, 1fr); gap: 9px; margin-top: 11px; }.link-row-fields label, .link-note-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }.link-row-fields input, .link-note-field input { width: 100%; height: 36px; min-width: 0; padding: 0 9px; color: var(--ink); background: var(--paper); border: 1px solid #dfe3df; border-radius: 7px; outline: 0; font-size: 10px; }.link-row-fields input:focus, .link-note-field input:focus { border-color: #9eb0f1; box-shadow: 0 0 0 3px #edf0ff; }.link-type-field .candidate-select-wrap select { height: 36px; padding-left: 9px; font-size: 10px; }.link-type-field .candidate-select-wrap > svg { top: 11px; }.link-type-hint { color: #9aa5b0; font-family: var(--mono); font-size: 8px; line-height: 1.35; }.url-input-wrap { position: relative; display: flex; align-items: center; }.url-input-wrap > svg { position: absolute; left: 9px; color: #9aa5b2; pointer-events: none; }.url-input-wrap input { padding-left: 29px; padding-right: 30px; }.url-input-wrap a { position: absolute; right: 8px; display: inline-grid; place-items: center; color: var(--cobalt); }.link-note-field { margin-top: 9px; }.link-note-field input { height: 34px; }.add-link-button { display: inline-flex; align-items: center; gap: 7px; margin-top: 11px; padding: 6px 0; color: var(--cobalt); background: transparent; border: 0; font-size: 10px; font-weight: 700; }.add-link-button small { color: #9ca6b1; font-family: var(--mono); font-size: 8px; font-weight: 400; }.check-row { position: relative; display: flex; align-items: flex-start; gap: 9px; margin-top: 16px; color: #687689; font-size: 10px; line-height: 1.5; cursor: pointer; }.check-row input { position: absolute; width: 1px; height: 1px; opacity: 0; }.custom-check { width: 18px; height: 18px; display: grid; place-items: center; flex: none; color: transparent; background: var(--paper); border: 1px solid #cfd6d0; border-radius: 5px; }.check-row input:checked + .custom-check { color: var(--ink); background: var(--lime); border-color: var(--lime); }.check-row input:focus-visible + .custom-check { outline: 3px solid rgba(49, 88, 232, .3); outline-offset: 2px; }.check-row > span:last-child { display: flex; flex-direction: column; gap: 4px; }.check-row > span:last-child b { color: #9ba4ad; font-family: var(--mono); font-size: 8px; font-weight: 500; }.check-row.has-error .custom-check { border-color: var(--danger); }.samples-card > .field-error { margin: 8px 0 0 27px; }
.review-card { padding: 22px 23px 21px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-soft); }.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding-bottom: 17px; border-bottom: 1px solid #eef0ed; }.review-card-top h3 { margin: 7px 0 4px; color: var(--ink); font-family: var(--display); font-size: 23px; font-weight: 600; letter-spacing: -.03em; }.review-card-top p { margin: 0; color: #8b96a3; font-size: 10px; }.review-card-top > .role-glyph { width: 38px; height: 38px; font-size: 20px; }.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin: 16px 0; }.review-grid > div { min-width: 0; padding: 10px; background: #f8f9f5; border: 1px solid #edf0ec; border-radius: 8px; }.review-grid span { display: block; color: #a0a9b2; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }.review-grid strong { display: block; margin-top: 6px; overflow: hidden; color: #536175; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.consent-block { padding: 11px 12px; background: #fbfcf8; border: 1px solid #edf0ec; border-radius: 8px; }.consent-block .check-row { margin-top: 0; }.consent-block.has-error { border-color: #e8a8ac; background: #fffafa; }.consent-block .field-error { margin: 7px 0 0 27px; }.review-warning, .review-ready { display: flex; align-items: flex-start; gap: 8px; margin-top: 13px; padding: 11px 12px; border-radius: 8px; }.review-warning { color: #916b32; background: #fff7e7; border: 1px solid #f2dfb5; }.review-warning > svg { color: #c28b35; flex: none; }.review-ready { color: #3f8360; background: #eef9f1; border: 1px solid #d9efdf; }.review-ready > svg { color: #4aa271; flex: none; }.review-warning div, .review-ready { font-size: 10px; line-height: 1.45; }.review-warning strong { display: block; font-size: 10px; }.review-warning span { display: block; margin-top: 2px; color: #a08353; font-size: 9px; }.submit-note { margin: 11px 0 0; color: #a0a8b2; font-family: var(--mono); font-size: 8px; line-height: 1.5; text-align: center; }.candidate-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 35px; padding: 17px 3px; color: #a0a9b3; border-top: 1px solid #dfe2de; font-family: var(--mono); font-size: 8px; }.candidate-footer span:last-child { display: inline-flex; align-items: center; gap: 5px; }.candidate-footer svg { color: #7ea6e7; }.candidate-mobile-bar { display: none; }
.confirmation-card { max-width: 650px; margin: 8vh auto 0; padding: 43px 44px 39px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }.confirmation-mark { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 28px; color: var(--ink); background: var(--lime); border-radius: 18px; box-shadow: 0 8px 0 rgba(16, 26, 43, .08); }.confirmation-card h1 { margin: 17px 0 13px; color: var(--ink); font-family: var(--display); font-size: clamp(39px, 5vw, 56px); font-weight: 600; letter-spacing: -.06em; line-height: .96; }.confirmation-card h1 em { color: var(--cobalt); font-style: normal; }.confirmation-card > p { max-width: 500px; margin: 0; color: #718094; font-size: 12px; line-height: 1.7; }.confirmation-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 23px; }.confirmation-meta > div { padding: 12px; background: #f8f9f5; border: 1px solid #edf0ec; border-radius: 9px; }.confirmation-meta span { display: block; color: #a0a9b2; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }.confirmation-meta strong { display: block; margin-top: 6px; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; font-weight: 600; }.confirmation-note { display: flex; align-items: flex-start; gap: 7px; margin: 14px 0 24px; padding: 11px 12px; color: #6b7c72; background: #eef9f1; border: 1px solid #d9efdf; border-radius: 8px; font-size: 10px; line-height: 1.45; }.confirmation-note svg { flex: none; color: #4ba271; }.confirmation-card .button-secondary { width: 100%; }

/* Responsive */
@media (max-width: 1180px) {
  .admin-sidebar { width: 218px; }
  .admin-main, .admin-topbar { padding-left: 27px; padding-right: 27px; }
  .hero-signal { right: 20px; transform: scale(.86); transform-origin: right center; }
  .hero-copy { max-width: 58%; }
  .role-library-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .candidate-layout { gap: 28px; }
}
@media (max-width: 930px) {
  .admin-frame { display: block; }
  .admin-sidebar { position: static; width: 100%; height: auto; display: block; padding: 15px 20px; }
  .sidebar-top { display: flex; align-items: center; gap: 22px; }
  .sidebar-kicker { display: none; }
  .sidebar-nav { display: flex; gap: 3px; margin-left: auto; }
  .sidebar-nav-item { width: auto; min-height: 35px; padding: 7px 9px; }
  .sidebar-nav-item b { display: none; }
  .sidebar-bottom { display: none; }
  .admin-topbar { height: 65px; }
  .admin-hero { min-height: 260px; }
  .admin-work-grid { grid-template-columns: 1fr; }
  .assignment-panel { position: static; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .candidate-layout { grid-template-columns: 1fr; gap: 0; padding-top: 25px; }
  .progress-rail { position: static; display: flex; align-items: flex-start; gap: 17px; margin-bottom: 27px; }
  .progress-rail-top { width: 180px; flex: none; }
  .progress-nav { flex: 1; display: flex; align-items: stretch; justify-content: space-between; gap: 4px; margin-top: 0; }
  .progress-nav-item { flex: 1; align-items: center; justify-content: center; padding: 9px 4px; text-align: center; }
  .progress-nav-item > span:last-child { align-items: center; }
  .rail-note, .rail-footer { display: none; }
}
@media (max-width: 700px) {
  .sidebar-top { flex-wrap: wrap; }
  .sidebar-nav { width: 100%; margin-left: 0; overflow-x: auto; padding-bottom: 2px; }
  .sidebar-nav-item { flex: none; }
  .admin-topbar { padding: 0 17px; }
  .admin-breadcrumb span, .admin-breadcrumb b { display: none; }
  .admin-topbar-actions { gap: 7px; }
  .topbar-connection { display: none; }
  .button-quiet span { display: none; }
  .profile-button span { display: none; }
  .admin-main { padding: 22px 14px 60px; }
  .admin-hero { min-height: 356px; padding: 28px 24px; }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { font-size: 38px; }
  .hero-copy > p { max-width: 330px; }
  .hero-signal { top: auto; right: 9px; bottom: -27px; transform: scale(.64); transform-origin: bottom right; opacity: .9; }
  .hero-actions { gap: 10px; }
  .hero-text-button { width: 100%; justify-content: flex-start; }
  .metric-grid { gap: 8px; }
  .metric-card { min-height: 95px; padding: 13px 12px; gap: 8px; }
  .metric-card strong { font-size: 23px; }
  .metric-card small { max-width: 108px; }
  .panel-heading { padding: 17px 15px 14px; }
  .applicant-toolbar { flex-direction: column; padding: 11px; }
  .filter-box { width: 100%; }
  .applicant-table-head { display: none; }
  .applicant-list { max-height: 390px; }
  .applicant-row { grid-template-columns: 34px minmax(0, 1fr) 20px; padding: 12px 13px; }
  .applicant-row-meta { display: none; }
  .applicant-row-copy small { white-space: normal; line-height: 1.35; }
  .recent-strip { padding: 17px 14px 13px; }
  .recent-table-head { display: none; }
  .recent-row { grid-template-columns: minmax(0, 1fr) 24px; padding: 12px 0; }
  .recent-row > span:nth-child(2), .recent-row > span:nth-child(3), .recent-row time { display: none; }
  .role-library-grid { grid-template-columns: 1fr 1fr; }
  .library-heading { align-items: flex-start; flex-direction: column; gap: 16px; }
  .library-count { text-align: left; }
  .library-callout { align-items: flex-start; flex-wrap: wrap; }
  .library-callout button { margin-left: 30px; }
  .candidate-header { height: 62px; }
  .candidate-header-inner { padding: 0 15px; gap: 9px; }
  .candidate-header-label, .candidate-header-divider, .candidate-ref { display: none; }
  .candidate-header-right { gap: 8px; }
  .header-help { padding: 6px; font-size: 0; }
  .header-help svg { width: 15px; height: 15px; }
  .candidate-layout { padding: 19px 14px 88px; }
  .progress-rail { gap: 9px; margin-bottom: 18px; }
  .progress-rail-top { width: 116px; padding: 11px 10px 12px; }
  .progress-number { margin-top: 8px; }.progress-number strong { font-size: 24px; }.progress-track { margin-top: 7px; }
  .progress-nav { gap: 0; }.progress-nav-item { flex-direction: column; gap: 5px; padding: 4px 1px; }.progress-nav-item strong { font-size: 8px; }.progress-nav-item small { font-size: 7px; }.progress-index { width: 22px; height: 22px; }
  .candidate-intro-main { padding: 26px 21px 21px; }.candidate-title-row { gap: 10px; }.candidate-intro h1 { font-size: 37px; }.candidate-intro-main p { font-size: 11px; }.assessment-stamp { min-width: 71px; margin-top: 21px; padding: 8px 5px; }.assessment-stamp strong { font-size: 8px; }.assessment-stamp small { font-size: 7px; }.intro-trust-row { display: grid; gap: 8px; margin-top: 17px; padding-top: 13px; font-size: 7px; }
  .candidate-role-banner { align-items: flex-start; flex-direction: column; padding: 13px 16px; gap: 8px; }.candidate-role-banner button { margin-left: 40px; }
  .candidate-section { margin-top: 30px; }.section-heading h2 { font-size: 24px; }.section-status { margin-top: 8px; }.section-card, .scenario-card, .review-card { padding: 17px 15px; }.section-card-intro, .samples-note { padding-bottom: 13px; }.form-grid-two { grid-template-columns: 1fr; gap: 13px; margin-top: 16px; }.form-grid + .form-field { margin-top: 15px; }.form-field > input, .candidate-select-wrap select { height: 42px; }.role-context-strip { align-items: flex-start; flex-wrap: wrap; }.role-context-strip > label { width: 100%; margin-left: 39px; margin-top: 4px; }.role-context-strip select { max-width: calc(100% - 22px); }
  .scenario-card-head { gap: 8px; }.scenario-number { width: 27px; height: 27px; }.scenario-card-title h3 { font-size: 20px; }.response-chip { display: none; }.scenario-prompt { margin-top: 14px; font-size: 11px; }.answer-shape { display: block; }.answer-shape > p { margin-top: 5px; }.answer-field textarea { min-height: 145px; }
  .link-row-fields { grid-template-columns: 1fr; gap: 9px; }.review-grid { grid-template-columns: 1fr 1fr; gap: 7px; }.confirmation-card { margin-top: 3vh; padding: 30px 23px 27px; }.confirmation-card h1 { font-size: 43px; }.candidate-footer { display: grid; gap: 8px; }.candidate-mobile-bar { position: fixed; z-index: 25; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 14px; background: rgba(16, 26, 43, .96); box-shadow: 0 -8px 20px rgba(16, 26, 43, .12); }.candidate-mobile-bar > span { color: #b9c5d6; font-family: var(--mono); font-size: 9px; }.candidate-mobile-bar > span b { color: var(--lime); font-size: 12px; }.candidate-mobile-bar .button-submit-small { font-size: 10px; }
  .toast { right: 14px; bottom: 70px; }
}
@media (max-width: 430px) {
  .sidebar-top { gap: 8px; }.sidebar-nav-item { padding: 7px 6px; }.sidebar-nav-item span { font-size: 9px; }.brand-copy strong { font-size: 15px; }.brand-copy small { display: none; }.stair-mark { transform: scale(.88); transform-origin: left center; width: 28px; }.admin-topbar-actions .button-quiet { width: 35px; padding: 7px; }.metric-card > .metric-icon { width: 27px; height: 27px; }.metric-card span { font-size: 9px; }.metric-card strong { font-size: 21px; }.role-library-grid { grid-template-columns: 1fr; }.role-library-card { min-height: 145px; }.library-callout button { margin-left: 0; }.progress-rail-top { width: 103px; }.progress-nav-item strong { font-size: 7px; }.candidate-intro h1 { font-size: 33px; }.assessment-stamp { min-width: 63px; }.assessment-stamp .role-glyph { width: 27px; height: 27px; font-size: 15px; }.review-grid { grid-template-columns: 1fr; }.review-grid > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; }.review-grid strong { margin-top: 0; text-align: right; }.confirmation-meta { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Stairio brand alignment --------------------------------------------------
   The public site uses a light canvas, Telegraf typography, dark ink and
   cool blue/teal accents. Keep the ATS information-dense, but let that
   visual language carry through the internal workflow. */
.brand-lockup { gap: 10px; }
.brand-logo-mark { width: 30px; height: 30px; display: inline-grid; place-items: center; flex: none; padding: 4px; background: #ffffff; border-radius: 9px; box-shadow: 0 4px 12px rgba(0, 0, 0, .12); }
.brand-logo-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.brand-name-image { width: 76px; height: 18px; display: block; overflow: hidden; }
.brand-name-image img { width: 76px; height: 76px; display: block; transform: translateY(-24px); filter: brightness(0) invert(1); }
.candidate-header .brand-name-image img { filter: none; }
.candidate-header .brand-logo-mark { padding: 0; background: transparent; box-shadow: none; }
.brand-logo-mark { padding: 0; background: transparent; box-shadow: none; }
.brand-copy strong { letter-spacing: -.065em; }
.brand-copy small { letter-spacing: .12em; }
.stair-mark { width: 30px; height: 28px; }
.stair-mark i { background: #43c4d4; border-radius: 3px 3px 1px 1px; }
.stair-mark i:nth-child(1) { opacity: .62; }
.stair-mark i:nth-child(2) { opacity: .82; }
.stair-mark i:nth-child(3) { background: #1677d2; }

.admin-shell { background: linear-gradient(135deg, #f6fafb 0%, #ffffff 55%, #f5fbfc 100%); }
.admin-sidebar { background: linear-gradient(165deg, #061925 0%, #092a38 58%, #0b3542 100%); }
.admin-sidebar::before { background: radial-gradient(circle, rgba(22, 119, 210, .42), transparent 68%); }
.admin-sidebar::after { background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(67, 196, 212, .1) 10px 11px); }
.sidebar-nav-item.is-active { background: rgba(22, 119, 210, .18); border-color: rgba(67, 196, 212, .24); box-shadow: inset 3px 0 0 #43c4d4; }
.sidebar-nav-item.is-active svg, .sidebar-nav-item.is-active b { color: #7de3ea; }
.integration-card { background: rgba(255, 255, 255, .06); border-color: rgba(125, 227, 234, .18); }
.integration-card-head { color: #eafcff; }
.integration-card-head button:hover { color: #7de3ea; }
.integration-card p { color: #a9c3ca; }
.sidebar-footer-line { color: #7d9ca5; }

.admin-topbar { background: rgba(255, 255, 255, .84); border-bottom-color: rgba(211, 224, 228, .86); backdrop-filter: blur(14px); }
.admin-breadcrumb strong { color: #18343f; }
.profile-button { border-radius: 999px; }
.profile-button::first-letter { color: #1677d2; }
.topbar-connection { color: #52717b; }

.admin-hero { min-height: 292px; color: #07121b; background: linear-gradient(115deg, #eaf6f8 0%, #f9fcfc 58%, #edf6fb 100%); border: 1px solid #d7e7ea; box-shadow: 0 16px 38px rgba(13, 75, 90, .09); }
.admin-hero::before { opacity: .72; background: radial-gradient(circle at 84% 14%, rgba(22, 119, 210, .2) 0, transparent 28%), radial-gradient(circle at 64% 110%, rgba(67, 196, 212, .22) 0, transparent 46%), repeating-linear-gradient(132deg, transparent 0 33px, rgba(7, 18, 27, .025) 33px 34px); }
.admin-hero::after { border-color: rgba(22, 119, 210, .24); box-shadow: 0 0 0 18px rgba(22, 119, 210, .04), 0 0 0 36px rgba(67, 196, 212, .035); }
.hero-copy h1 { color: #07121b; font-weight: 700; letter-spacing: -.065em; }
.hero-copy h1 em { color: #0a6573; }
.hero-copy > p { color: #4d6872; }
.eyebrow-light { color: #0a6573; }
.button-lime, .button-primary { color: #ffffff; background: #0a6573; border-color: #0a6573; box-shadow: 0 5px 0 rgba(6, 58, 68, .14); }
.button-lime:hover:not(:disabled), .button-primary:hover:not(:disabled) { color: #ffffff; background: #084e5a; border-color: #084e5a; box-shadow: 0 10px 22px rgba(10, 101, 115, .22); }
.hero-text-button { color: #2c5964; }
.hero-text-button:hover { color: #0a6573; }
.hero-signal .signal-orbit { border-color: rgba(22, 119, 210, .3); }
.hero-signal .signal-orbit-two { border-color: rgba(10, 101, 115, .48); }
.signal-core { color: #ffffff; background: #1677d2; box-shadow: 0 0 0 8px rgba(22, 119, 210, .12); }
.signal-note { background: rgba(255, 255, 255, .72); border-color: rgba(22, 119, 210, .2); }
.signal-note b { color: #0a6573; }
.signal-note span { color: #5c7882; }
.signal-stair { border-color: #0a6573; }

.metric-card, .panel, .section-card, .scenario-card, .review-card, .confirmation-card { box-shadow: 0 8px 24px rgba(7, 18, 27, .055); }
.metric-card-blue { background: #eef7fb; border-color: #d8eaf2; }
.metric-icon { color: #1677d2; background: #e4f1fb; }
.metric-icon-lime { color: #0a6573; background: #dff3f2; }
.metric-icon-orange { color: #b56731; background: #fff0e4; }
.metric-icon-green { color: #317b68; background: #e0f4ed; }
.panel-heading h2, .section-heading h2, .scenario-card-title h3, .review-card-top h3, .confirmation-card h1 { font-weight: 700; letter-spacing: -.055em; }
.applicant-row:hover { background: #f1f8fa; }
.applicant-row.is-selected { background: #edf6fb; box-shadow: inset 3px 0 0 #1677d2; }
.row-chevron, .applicant-row.is-selected .row-chevron { color: #1677d2; }
.role-context-strip { background: #edf8fa; border-color: #d4ecef; }
.candidate-role-banner { background: #edf8fa; border-color: #d4ecef; }
.candidate-role-banner strong { color: #18343f; }
.candidate-select-wrap select, .role-context-strip select { color: #0a6573; }
.scenario-card:focus-within { border-color: #98d5df; box-shadow: 0 9px 25px rgba(22, 119, 210, .1); }
.scenario-number { color: #1677d2; background: #e5f1fb; }
.answer-shape { background: #eff8fb; border-left-color: #7dc8d3; }
.answer-shape > span { color: #0a6573; }
.answer-field textarea:focus, .link-row-fields input:focus, .link-note-field input:focus { border-color: #73c5d0; box-shadow: 0 0 0 3px #e7f6f7; }
.button-submit { color: #ffffff; background: #07121b; border-color: #07121b; box-shadow: 0 8px 0 rgba(7, 18, 27, .12); }
.button-submit:hover:not(:disabled) { color: #ffffff; background: #0a6573; border-color: #0a6573; box-shadow: 0 12px 22px rgba(10, 101, 115, .24); }
.candidate-mobile-bar { background: rgba(6, 25, 37, .96); }
.candidate-mobile-bar > span b { color: #7de3ea; }
.confirmation-mark { color: #ffffff; background: #1677d2; }
.confirmation-card h1 em { color: #0a6573; }
.status-positive { color: #1d745d; background: #e2f5ed; }
.status-neutral { color: #2f6b82; background: #e7f3f8; }

@media (max-width: 700px) {
  .admin-hero { border-radius: 16px; }
  .admin-sidebar { background: linear-gradient(165deg, #061925 0%, #092a38 100%); }
}

.project-options { display: grid; gap: 9px; margin-top: 18px; }
.project-options-label { margin: 0 0 2px; color: #526075; font-size: 10px; font-weight: 700; }
.project-options-label b { margin-left: 5px; color: var(--cobalt); font-family: var(--mono); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.project-option { position: relative; display: flex; align-items: flex-start; gap: 10px; padding: 13px 14px; color: var(--ink-soft); background: #fbfcf8; border: 1px solid #dfe7e9; border-radius: 10px; cursor: pointer; transition: border-color .16s ease, background .16s ease, box-shadow .16s ease; }
.project-option:hover { border-color: #9ed4dd; background: #f3fbfc; }
.project-option.is-selected { border-color: #63bfca; background: #eaf7f8; box-shadow: inset 3px 0 0 #0a6573; }
.project-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.project-option-check { width: 20px; height: 20px; display: grid; place-items: center; flex: none; color: transparent; background: #ffffff; border: 1px solid #c8d5d8; border-radius: 50%; }
.project-option input:checked + .project-option-check { color: #ffffff; background: #0a6573; border-color: #0a6573; }
.project-option input:focus-visible + .project-option-check { outline: 3px solid rgba(22, 119, 210, .24); outline-offset: 2px; }
.project-option > span:last-child { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.project-option strong { font-size: 11px; }
.project-option small { color: #7d8998; font-size: 9px; line-height: 1.45; }
.project-link-fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .86fr); gap: 11px; margin-top: 16px; }
.project-link-fields .answer-field > input { width: 100%; height: 40px; padding: 0 11px; color: var(--ink); background: #fcfcf8; border: 1px solid #dfe3df; border-radius: 8px; outline: 0; font-size: 11px; }
.project-link-fields .answer-field > input::placeholder { color: #adb5bd; }
.project-link-fields .answer-field > input:focus { background: var(--paper); border-color: #73c5d0; box-shadow: 0 0 0 3px #e7f6f7; }
.project-link-fields .url-input-wrap input { height: 40px; }
.project-link-fields .answer-field small { color: #9ba5af; font-family: var(--mono); font-size: 8px; font-weight: 500; text-transform: uppercase; }
.project-card .answer-shape { margin-top: 16px; margin-bottom: 0; }

@media (max-width: 700px) {
  .project-link-fields { grid-template-columns: 1fr; gap: 13px; }
}

.role-fixed { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; color: #0a6573; font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .04em; }
.project-link-fields.link-row { display: block; margin-top: 16px; }
.project-link-fields.link-row .link-row-fields { margin-top: 11px; }
.candidate-role-banner strong { color: #18343f; font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: -.03em; }
.role-context-strip > div strong { color: #18343f; font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -.03em; }
.role-context-strip > div { flex: 1; }
