:root { --bg: #f5f7fb; --surface: #ffffff; --surface-2: #eef2f8; --text: #142033; --muted: #667085; --border: #dce3ee; --primary: #465bd8; --primary-strong: #3446b9; --primary-soft: #edf0ff; --positive: #087f5b; --positive-soft: #e7f7f1; --warning: #9a6700; --warning-soft: #fff5d6; --danger: #b42318; --danger-soft: #ffebe9; --shadow: 0 16px 40px rgba(23, 36, 64, .08); --radius: 16px; --radius-sm: 10px; --sidebar: 248px; } @media (prefers-color-scheme: dark) { :root { --bg: #0f1520; --surface: #171f2d; --surface-2: #202a3a; --text: #edf2fa; --muted: #a8b2c4; --border: #303b4e; --primary: #91a0ff; --primary-strong: #aab5ff; --primary-soft: #252f55; --positive: #5bd3aa; --positive-soft: #153b31; --warning: #ffd166; --warning-soft: #443716; --danger: #ff8c84; --danger-soft: #4b2424; --shadow: 0 18px 42px rgba(0, 0, 0, .28); } } * { box-sizing: border-box; } html { min-height: 100%; scroll-behavior: smooth; } body { min-height: 100vh; margin: 0; background: var(--bg); color: var(--text); font: 15px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; } a { color: var(--primary); text-decoration: none; } a:hover { text-decoration: underline; } button, input, select, textarea { font: inherit; } button { cursor: pointer; } code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; } pre { overflow: auto; border-radius: var(--radius-sm); background: var(--surface-2); padding: 18px; } .skip-link { position: fixed; left: 10px; top: -80px; z-index: 1000; padding: 10px 14px; background: var(--surface); color: var(--text); border-radius: 8px; box-shadow: var(--shadow); } .skip-link:focus { top: 10px; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; } .mobile-only { display: none; } .topbar { position: sticky; top: 0; z-index: 30; min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 24px; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(16px); } .brand-wrap, .brand, .topbar-actions { display: flex; align-items: center; gap: 12px; } .brand { color: var(--text); } .brand:hover { text-decoration: none; } .brand span:last-child { display: grid; line-height: 1.2; } .brand small { color: var(--muted); font-size: 12px; } .brand-mark { width: 42px; height: 42px; display: inline-grid; place-items: center; border-radius: 12px; background: linear-gradient(145deg, var(--primary), #7b4fe8); color: white; font-weight: 800; letter-spacing: -.04em; box-shadow: 0 8px 18px rgba(70, 91, 216, .25); } .app-shell { display: grid; grid-template-columns: var(--sidebar) minmax(0, 1fr); min-height: calc(100vh - 70px); } .sidebar { position: sticky; top: 70px; height: calc(100vh - 70px); display: flex; flex-direction: column; gap: 6px; padding: 24px 14px; background: var(--surface); border-right: 1px solid var(--border); overflow-y: auto; } .nav-link { display: grid; gap: 2px; padding: 11px 14px; border-radius: 11px; color: var(--text); font-weight: 650; } .nav-link small { color: var(--muted); font-weight: 400; } .nav-link:hover { background: var(--surface-2); text-decoration: none; } .nav-link.active { background: var(--primary-soft); color: var(--primary-strong); } .nav-link.active small { color: var(--primary); } .sidebar-foot { margin-top: auto; display: flex; align-items: center; gap: 7px; padding: 12px; color: var(--muted); font-size: 12px; } .sidebar-foot small { margin-left: auto; } .status-dot { width: 8px; height: 8px; border-radius: 99px; background: var(--positive); box-shadow: 0 0 0 4px var(--positive-soft); } .main-content { width: 100%; max-width: 1480px; padding: 34px clamp(20px, 4vw, 56px) 64px; } .auth-main { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 20% 10%, var(--primary-soft), transparent 36%), var(--bg); } .page-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 28px; } .page-header h1, .job-hero h1 { margin: 0; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; letter-spacing: -.035em; } .page-header p { margin: 8px 0 0; color: var(--muted); max-width: 780px; } .eyebrow { margin: 0 0 8px !important; color: var(--primary) !important; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; } .section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin: 34px 0 18px; } .section-heading h2 { margin: 0; font-size: 23px; letter-spacing: -.02em; } .section-heading p { margin: 5px 0 0; color: var(--muted); } .title-row { display: flex; align-items: center; gap: 10px; } .button { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 14px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: var(--text); font-weight: 700; line-height: 1.2; text-decoration: none; } .button:hover { text-decoration: none; transform: translateY(-1px); } .button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid color-mix(in srgb, var(--primary) 38%, transparent); outline-offset: 2px; } .button-primary { background: var(--primary); color: white; box-shadow: 0 7px 16px rgba(70,91,216,.2); } .button-primary:hover { background: var(--primary-strong); } .button-secondary { background: var(--surface); border-color: var(--border); } .button-secondary:hover, .button-ghost:hover { background: var(--surface-2); } .button-ghost { color: var(--muted); } .button-link { color: var(--primary); background: var(--primary-soft); } .button-block { width: 100%; } .button-small { min-height: 32px; padding: 5px 9px; font-size: 13px; } .icon-button { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); color: var(--text); } .stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; } .stat-card, .panel, .job-card, .auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); } .stat-card { min-height: 130px; display: grid; align-content: center; padding: 22px; } .stat-card span, .stat-card small { color: var(--muted); } .stat-card strong { margin: 2px 0; font-size: 34px; line-height: 1; letter-spacing: -.04em; } .panel { padding: clamp(20px, 3vw, 30px); margin-bottom: 20px; } .panel > h2:first-child { margin-top: 0; } .job-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } .job-card { padding: 22px; display: flex; flex-direction: column; gap: 16px; } .job-card-head { display: grid; grid-template-columns: auto 1fr; gap: 15px; align-items: flex-start; } .job-card h3 { margin: 7px 0 2px; font-size: 21px; line-height: 1.25; } .job-card h3 a { color: var(--text); } .job-card p { margin: 0; color: var(--muted); } .score-ring { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; border: 6px solid var(--primary-soft); box-shadow: inset 0 0 0 2px var(--primary); color: var(--primary-strong); font-size: 18px; font-weight: 850; } .job-meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 13px; } .job-meta span { padding: 5px 8px; border-radius: 7px; background: var(--surface-2); } .job-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; } .pill { display: inline-flex; align-items: center; width: fit-content; padding: 4px 8px; border-radius: 999px; background: var(--surface-2); color: var(--muted); font-size: 12px; font-weight: 750; } .pill-strong, .pill-allow { background: var(--positive-soft); color: var(--positive); } .pill-possible, .pill-review { background: var(--warning-soft); color: var(--warning); } .pill-hidden, .pill-deny { background: var(--danger-soft); color: var(--danger); } .compact-list { margin: 0; padding-left: 20px; } .compact-list li + li { margin-top: 5px; } .compact-list.positive li::marker { color: var(--positive); } .compact-list.caution li::marker { color: var(--warning); } .attention { padding: 11px 13px; border-radius: 9px; background: var(--warning-soft); color: var(--warning) !important; font-size: 13px; } .filter-bar { display: flex; gap: 10px; padding: 14px; margin-bottom: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); } .filter-bar .grow { flex: 1; } input, select, textarea { width: 100%; min-height: 42px; padding: 9px 11px; border: 1px solid var(--border); border-radius: 9px; background: var(--surface); color: var(--text); } textarea { resize: vertical; } .table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); } .data-table { width: 100%; border-collapse: collapse; min-width: 760px; } .data-table th { text-align: left; padding: 12px 15px; background: var(--surface-2); color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; } .data-table td { padding: 15px; border-top: 1px solid var(--border); vertical-align: middle; } .data-table td small, .table-title + small { display: block; color: var(--muted); margin-top: 3px; } .table-title { color: var(--text); font-weight: 760; } .pagination { display: flex; justify-content: center; gap: 18px; padding: 20px; } .detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 22px; align-items: start; } .back-link { display: inline-block; margin-bottom: 15px; color: var(--muted); } .job-hero { display: flex; justify-content: space-between; gap: 24px; padding: clamp(22px, 4vw, 38px); margin-bottom: 20px; border-radius: var(--radius); background: linear-gradient(140deg, var(--surface), var(--primary-soft)); border: 1px solid var(--border); } .hero-subtitle { margin: 10px 0 14px; color: var(--muted); font-size: 17px; } .hero-score { min-width: 132px; height: 132px; display: grid; place-items: center; align-content: center; border-radius: 50%; background: var(--surface); border: 8px solid var(--primary); box-shadow: var(--shadow); } .hero-score strong { font-size: 36px; line-height: 1; } .hero-score span, .hero-score small { color: var(--muted); font-size: 12px; } .sticky-card { position: sticky; top: 92px; padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); } .sticky-card h2 { margin-top: 0; } .stack-actions { display: grid; gap: 9px; } .hide-form { display: grid; gap: 8px; } .hide-form label { color: var(--muted); font-size: 12px; } .score-components { display: grid; gap: 12px; margin: 18px 0 24px; } .score-components > div { display: grid; grid-template-columns: 120px minmax(120px, 1fr) 52px; gap: 12px; align-items: center; } .score-components strong { text-align: right; } .progress { height: 9px; overflow: hidden; border-radius: 999px; background: var(--surface-2); } .progress i { display: block; height: 100%; min-width: 2px; border-radius: inherit; background: var(--primary); } .two-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; } .prose { max-width: 82ch; } .prose h2, .prose h3, .prose h4 { margin-top: 1.5em; } .prose p, .prose li { color: color-mix(in srgb, var(--text) 88%, var(--muted)); } .definition-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .definition-grid div { padding: 12px; border-radius: 10px; background: var(--surface-2); } .definition-grid dt { color: var(--muted); font-size: 12px; } .definition-grid dd { margin: 3px 0 0; font-weight: 700; } .source-list { list-style: none; padding: 0; } .source-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--border); } .source-list span { color: var(--muted); font-size: 12px; } .card-list { display: grid; gap: 14px; } .profile-card, .application-card { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin: 0; } .profile-card h2, .application-card h2 { margin: 5px 0; } .form-panel { max-width: 980px; } .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; } .form-grid label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 650; } .form-grid label > input, .form-grid label > select, .form-grid label > textarea { color: var(--text); font-weight: 400; } .span-2 { grid-column: 1 / -1; } .field-error { color: var(--danger); } .form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; } .messages { display: grid; gap: 8px; margin-bottom: 18px; } .message { padding: 12px 14px; border-radius: 10px; background: var(--primary-soft); color: var(--primary-strong); border: 1px solid color-mix(in srgb, var(--primary) 25%, var(--border)); } .message.success { background: var(--positive-soft); color: var(--positive); } .message.warning { background: var(--warning-soft); color: var(--warning); } .message.error { background: var(--danger-soft); color: var(--danger); } .empty-state { grid-column: 1 / -1; padding: 54px 24px; text-align: center; border: 1px dashed var(--border); border-radius: var(--radius); background: var(--surface); } .empty-state h2 { margin-bottom: 6px; } .empty-state p { color: var(--muted); max-width: 600px; margin: 0 auto 16px; } .empty-icon { font-size: 40px; color: var(--primary); } .auth-card { width: min(460px, 100%); padding: 32px; } .auth-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; } .auth-card h1 { margin: 0; } .auth-card p { margin: 4px 0; color: var(--muted); } .stack { display: grid; gap: 16px; } .stack label { display: grid; gap: 6px; font-weight: 650; } .muted { color: var(--muted); } .small { font-size: 12px; } @media (max-width: 1100px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .job-grid { grid-template-columns: 1fr; } .detail-layout { grid-template-columns: 1fr; } .sticky-card { position: static; } } @media (max-width: 760px) { .mobile-only { display: inline-grid; place-items: center; } .topbar { padding: 10px 14px; } .brand small, .topbar-actions .button:first-child { display: none; } .app-shell { grid-template-columns: 1fr; } .sidebar { position: fixed; inset: 70px auto 0 0; z-index: 40; width: min(86vw, 300px); height: calc(100vh - 70px); transform: translateX(-105%); transition: transform .2s ease; box-shadow: var(--shadow); } .sidebar.open { transform: translateX(0); } .main-content { padding: 24px 15px 50px; } .page-header, .profile-card, .application-card, .job-hero { flex-direction: column; } .page-header .button { width: 100%; } .stats-grid, .two-columns, .form-grid, .definition-grid { grid-template-columns: 1fr; } .filter-bar { flex-direction: column; } .span-2 { grid-column: auto; } .hero-score { width: 105px; height: 105px; min-width: 105px; } .score-components > div { grid-template-columns: 94px 1fr 40px; } .source-list li { flex-direction: column; gap: 3px; } } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }