:root {
  --ink: #14213d;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #ffffff;
  --canvas: #f6f8fc;
  --primary: #2563eb;
  --primary-dark: #1746b5;
  --success: #15803d;
  --warning: #b45309;
  --danger: #b91c1c;
  --radius: 16px;
  --shadow: 0 12px 34px rgba(15, 23, 42, .07);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 15px/1.65 "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(28px, 4vw, 42px); line-height: 1.2; letter-spacing: -.03em; }
h2 { font-size: 21px; }
h3 { font-size: 17px; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.main-content { min-height: calc(100vh - 150px); padding: 42px 0 70px; }
.site-header { background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px); }
.nav-wrap { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; font-size: 17px; }
.brand-mark { background: var(--primary); color: white; border-radius: 10px; width: 34px; height: 34px; display: grid; place-items: center; font-size: 13px; }
nav { display: flex; align-items: center; gap: 18px; }
.user-name { color: var(--muted); }
.inline-form { display: inline; margin: 0; }
.link-button { border: 0; background: transparent; color: var(--primary); font: inherit; cursor: pointer; padding: 0; }
.site-footer { color: var(--muted); border-top: 1px solid var(--line); padding: 22px 0; background: white; font-size: 13px; }
.button { border: 0; border-radius: 10px; background: var(--primary); color: white; padding: 11px 18px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font: inherit; font-weight: 700; }
.button:hover { background: var(--primary-dark); color: white; }
.button-small { padding: 7px 12px; font-size: 13px; }
.button-secondary { background: #e8efff; color: #1746b5; }
.button-secondary:hover { background: #d9e5ff; color: #123d9e; }
.button-ghost { background: white; color: var(--ink); border: 1px solid var(--line); }
.button-ghost:hover { background: #f8fafc; color: var(--ink); }
.button-block { width: 100%; }
.button-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.hero { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 42px; border-radius: 24px; color: white; background: linear-gradient(130deg, #14213d 0%, #1d4ed8 100%); box-shadow: var(--shadow); }
.hero p { max-width: 690px; color: #dbeafe; margin-bottom: 0; }
.hero .button { background: white; color: var(--primary-dark); white-space: nowrap; }
.eyebrow { color: var(--primary); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.hero .eyebrow { color: #bfdbfe; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px 0 42px; }
.stat-grid-small { margin-bottom: 24px; }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; box-shadow: 0 5px 18px rgba(15,23,42,.04); }
.stat-card strong { font-size: 30px; line-height: 1.2; }
.stat-card span { color: var(--muted); }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 34px 0 16px; }
.section-head h2 { margin-bottom: 2px; }
.muted, .help-text { color: var(--muted); }
.help-text { font-size: 13px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.job-card { display: block; background: white; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: .2s; }
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); border-color: #bfdbfe; }
.job-card-top, .job-meta { display: flex; justify-content: space-between; gap: 12px; }
.job-card h3 { margin: 18px 0 8px; }
.job-card p { color: var(--muted); min-height: 50px; }
.job-meta { border-top: 1px solid var(--line); padding-top: 14px; color: var(--muted); font-size: 13px; }
.pill { display: inline-flex; align-items: center; border-radius: 999px; background: #eff6ff; color: #1d4ed8; padding: 3px 9px; font-size: 12px; font-weight: 700; }
.pill-danger { background: #fef2f2; color: var(--danger); }
.pill-warning { background: #fff7ed; color: var(--warning); }
.empty-state { text-align: center; padding: 56px 20px; background: white; border: 1px dashed #cbd5e1; border-radius: var(--radius); }
.empty-state.compact { padding: 28px; }
.empty-compact { padding: 18px; color: var(--muted); text-align: center; }
.page-heading { margin-bottom: 26px; }
.page-heading h1 { margin-bottom: 6px; }
.page-heading p { color: var(--muted); }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.content-narrow { max-width: 780px; margin: 0 auto; }
.panel { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 5px 20px rgba(15,23,42,.035); }
.stack-form { display: flex; flex-direction: column; gap: 10px; }
label { font-weight: 700; color: #334155; }
input[type=text], input[type=password], input[type=number], input[type=file], textarea, select {
  width: 100%; border: 1px solid #cbd5e1; border-radius: 9px; padding: 10px 12px; color: var(--ink); background: white; font: inherit;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 3px solid #dbeafe; border-color: var(--primary); }
.notice { border-left: 4px solid var(--primary); background: #eff6ff; color: #1e3a8a; border-radius: 8px; padding: 12px 14px; margin: 10px 0; }
.notice-warning { border-color: #f59e0b; background: #fff7ed; color: #9a3412; }
.form-error, .error-inline { color: var(--danger); }
.form-error { background: #fef2f2; border-radius: 8px; padding: 9px 12px; font-size: 13px; }
.messages { margin-bottom: 20px; display: grid; gap: 8px; }
.message { border-radius: 10px; padding: 11px 14px; background: #eff6ff; color: #1e3a8a; }
.message-success { background: #f0fdf4; color: #166534; }
.message-warning { background: #fff7ed; color: #9a3412; }
.message-error { background: #fef2f2; color: #991b1b; }
.auth-shell { min-height: 65vh; display: grid; place-items: center; }
.auth-card { width: min(440px, 100%); background: white; border: 1px solid var(--line); border-radius: 20px; padding: 34px; box-shadow: var(--shadow); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.criterion-summary { border-top: 1px solid var(--line); padding: 16px 0; }
.criterion-summary:first-of-type { border-top: 0; }
.criterion-summary > div:first-child, .criterion-tags { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.criterion-summary p { color: var(--muted); margin: 8px 0 0; }
.score-weight { color: var(--primary); font-weight: 800; }
.pre-wrap { white-space: pre-wrap; color: #334155; }
.table-wrap { overflow-x: auto; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
th { background: #f8fafc; color: #475569; font-size: 13px; white-space: nowrap; }
tbody tr:last-child td { border-bottom: 0; }
.status, .decision { display: inline-flex; border-radius: 999px; padding: 4px 9px; font-size: 12px; font-weight: 800; background: #f1f5f9; color: #475569; white-space: nowrap; }
.status-completed, .decision-recommended { background: #dcfce7; color: #166534; }
.status-processing, .status-pending, .decision-review { background: #fef3c7; color: #92400e; }
.status-failed, .status-partial, .decision-not_recommended { background: #fee2e2; color: #991b1b; }
.criteria-list { display: grid; gap: 16px; }
.criterion-row { display: grid; grid-template-columns: 48px 1fr; border: 1px solid var(--line); border-radius: 13px; padding: 18px; }
.criterion-index { font-size: 22px; font-weight: 900; color: #bfdbfe; }
.criterion-fields { display: grid; gap: 12px; }
.form-grid { display: grid; gap: 12px; }
.form-grid-4 { grid-template-columns: 1fr 1.7fr .55fr .55fr; }
.checkbox-line { display: flex; align-items: center; gap: 7px; }
.checkbox-line input { width: auto; }
.checkbox-line label { margin-right: 18px; }
.form-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-top: 18px; }
.sticky-actions { position: sticky; bottom: 10px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 12px; padding: 12px; box-shadow: var(--shadow); }
.weight-total { margin-right: auto; font-weight: 800; color: var(--danger); }
.weight-ok { color: var(--success); }
.upload-panel { text-align: center; padding: 40px; }
.upload-icon { width: 58px; height: 58px; border-radius: 18px; background: #eff6ff; color: var(--primary); display: grid; place-items: center; font-size: 32px; font-weight: 900; margin: 0 auto 8px; }
.progress-panel { margin-bottom: 20px; }
.progress-copy { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.progress-copy strong, .progress-copy span { display: block; }
.progress-track { height: 10px; overflow: hidden; border-radius: 999px; background: #e2e8f0; margin-bottom: 10px; }
.progress-bar { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), #60a5fa); transition: width .3s; }
.rank { font-weight: 900; color: var(--primary); }
.score-cell { font-size: 18px; font-weight: 900; }
.text-small { font-size: 12px; }
.result-hero { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 28px; margin-bottom: 18px; }
.big-score strong { font-size: 58px; line-height: 1; color: var(--primary); }
.big-score span { color: var(--muted); }
.clean-list { margin: 0; padding-left: 20px; }
.clean-list li { margin: 8px 0; }
.gap-list li::marker { color: var(--warning); }
.evaluation-list { display: grid; gap: 14px; }
.evaluation-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.evaluation-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.evaluation-head h3 { margin: 9px 0 0; }
.item-score { text-align: right; white-space: nowrap; }
.item-score strong { display: block; color: var(--primary); font-size: 30px; line-height: 1.1; }
.item-score span { color: var(--muted); font-size: 12px; }
.evidence-box { background: #f8fafc; border-radius: 10px; padding: 13px; }
blockquote { margin: 8px 0 0; padding-left: 12px; border-left: 3px solid #93c5fd; color: #334155; }
.review-panel { margin-top: 24px; }
.review-history { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 16px; }
.review-history > div { border-top: 1px dashed var(--line); padding: 10px 0; }
.error-panel { border-left: 4px solid var(--danger); }

@media (max-width: 850px) {
  .stat-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .two-column { grid-template-columns: 1fr; }
  .form-grid-4 { grid-template-columns: 1fr 1fr; }
  .hero, .split-heading { align-items: flex-start; flex-direction: column; }
  .result-hero { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1180px); }
  nav > a:first-child, .user-name { display: none; }
  .brand span:last-child { display: none; }
  .hero { padding: 26px; }
  .stat-grid, .card-grid { grid-template-columns: 1fr; }
  .form-grid-4 { grid-template-columns: 1fr; }
  .criterion-row { grid-template-columns: 1fr; }
  .criterion-index { display: none; }
  .panel { padding: 18px; }
}

/* Visual refresh */
:root {
  --ink: #172033;
  --muted: #778198;
  --line: #e8eaf2;
  --canvas: #f7f7fc;
  --primary: #6558e8;
  --primary-dark: #4d3fd0;
  --violet: #8b5cf6;
  --cyan: #19b9d1;
  --green: #32b67a;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(66, 54, 145, .09);
}

body {
  background:
    radial-gradient(circle at 8% 18%, rgba(139, 92, 246, .07), transparent 24rem),
    radial-gradient(circle at 92% 46%, rgba(25, 185, 209, .06), transparent 24rem),
    var(--canvas);
}

svg { display: block; }
.brand-mark svg,
.button svg,
.nav-link svg,
.icon-button svg,
.stat-icon svg,
.compact-tip svg,
.input-with-icon svg,
.job-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-header {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(226, 226, 239, .8);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 74px; }
.brand { letter-spacing: -.02em; font-size: 18px; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: linear-gradient(145deg, #8b5cf6, #4f46e5);
  box-shadow: 0 8px 18px rgba(101, 88, 232, .26);
}
.brand-mark svg { width: 21px; height: 21px; fill: white; }
nav { gap: 12px; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #667085;
  font-weight: 700;
  padding: 8px 10px;
}
.nav-link svg { width: 17px; height: 17px; }
.avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efeefe;
  color: var(--primary);
  font-weight: 900;
}
.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #98a2b3;
  cursor: pointer;
}
.icon-button:hover { color: var(--primary); background: #f0efff; }
.button {
  gap: 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7367ef, #5546d8);
  box-shadow: 0 10px 22px rgba(85, 70, 216, .18);
}
.button:hover { transform: translateY(-1px); background: linear-gradient(135deg, #6558e8, #4938c7); }
.button-large { min-height: 50px; font-size: 16px; }
.button-light { background: white; color: #4d3fd0; box-shadow: none; }
.button-light:hover { background: #f4f2ff; color: #4d3fd0; }
.button-ghost { box-shadow: none; background: white; }
.main-content { padding-top: 34px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; }
.site-footer { background: rgba(255,255,255,.72); }

.hero-photo {
  position: relative;
  min-height: 385px;
  padding: 54px;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(31, 25, 73, .94) 0%, rgba(50, 41, 115, .83) 42%, rgba(42, 35, 88, .18) 100%),
    url("../img/team-collaboration.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 65px rgba(31, 25, 73, .2);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(255,255,255,.09);
  border-radius: 50%;
  z-index: -1;
}
.hero-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.hero-copy h1 { font-size: clamp(45px, 6vw, 70px); margin: 0; line-height: 1.03; }
.hero-copy h1 span { color: #a5f3fc; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; }
.hero-proof { display: flex; align-items: center; gap: 12px; color: #e0e7ff; font-size: 13px; }
.proof-avatars { display: flex; }
.proof-avatars i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: #7c3aed;
  color: white;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}
.proof-avatars i:nth-child(2) { background: #0891b2; }
.proof-avatars i:nth-child(3) { background: #16a34a; }
.hero-float-card {
  align-self: flex-end;
  min-width: 285px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  box-shadow: 0 20px 45px rgba(15, 23, 42, .22);
  backdrop-filter: blur(14px);
}
.hero-float-card b, .hero-float-card small { display: block; }
.hero-float-card small { color: var(--muted); margin-top: 3px; }
.match-ring {
  width: 62px;
  height: 62px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  text-align: center;
  background: conic-gradient(#65dba5 92%, #e7e8f0 0);
  position: relative;
}
.match-ring::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: white; }
.match-ring strong, .match-ring span { position: relative; line-height: 1.1; }
.match-ring strong { font-size: 20px; }
.match-ring span { font-size: 9px; color: var(--muted); }

.stat-grid { margin-top: 22px; margin-bottom: 46px; }
.stat-card {
  min-height: 112px;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 0;
  box-shadow: 0 12px 32px rgba(35, 28, 83, .055);
}
.stat-card > div { display: flex; flex-direction: column; }
.stat-card strong { font-size: 32px; }
.stat-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  font-weight: 900;
  font-size: 20px;
}
.stat-violet .stat-icon { color: #7655d7; background: #f1edff; }
.stat-blue .stat-icon { color: #4e75e6; background: #edf3ff; }
.stat-cyan .stat-icon { color: #0694aa; background: #e8fbfe; }
.stat-green .stat-icon { color: #239466; background: #ebfaf3; }
.stat-red .stat-icon { color: #c74c63; background: #fff0f3; }
.section-kicker { display: block; color: var(--primary); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.section-head h2 { font-size: 26px; margin: 1px 0 0; }
.circle-action {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ece9ff;
  color: var(--primary);
  font-size: 25px;
  line-height: 1;
}
.circle-action:hover { background: var(--primary); color: white; }

.card-grid { gap: 20px; }
.job-card {
  padding: 0;
  overflow: hidden;
  border: 0;
  box-shadow: 0 14px 36px rgba(44, 36, 100, .06);
}
.job-visual { height: 112px; overflow: hidden; }
.job-visual svg { width: 100%; height: 100%; padding: 10px 34px; }
.job-visual circle, .job-visual rect { fill: rgba(255,255,255,.34); }
.job-visual path { fill: rgba(255,255,255,.82); }
.job-visual-violet { background: linear-gradient(135deg, #9d8df4, #7165e5); }
.job-visual-blue { background: linear-gradient(135deg, #67c7e1, #4889dc); }
.job-visual-green { background: linear-gradient(135deg, #62d2ae, #35a979); }
.job-card-top, .job-card h3, .job-meta { margin-left: 20px; margin-right: 20px; }
.job-card-top { margin-top: 17px; }
.job-card h3 { margin-top: 13px; margin-bottom: 18px; min-height: 44px; font-size: 18px; }
.job-meta { padding: 14px 0 17px; }
.job-meta b { color: var(--ink); }
.job-arrow { margin-left: auto; color: var(--primary); font-size: 20px; }
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.empty-illustration { width: min(240px, 80%); height: auto; margin: 0 auto 12px; }
.empty-illustration * { fill: none; stroke: #8b7eea; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.empty-illustration small { width: 170px; }

.heading-with-step { display: flex; align-items: center; gap: 16px; }
.step-badge {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: white;
  background: linear-gradient(145deg, #8b5cf6, #4f46e5);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(101, 88, 232, .22);
}
.compact-heading h1 { margin: 0; font-size: 32px; }
.compact-heading p { margin: 3px 0 0; }
.form-visual-layout { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 600px; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.form-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  background:
    linear-gradient(0deg, rgba(36, 28, 79, .86), rgba(72, 59, 137, .18)),
    url("../img/office-team.jpg") center / cover;
}
.form-photo-content { color: white; width: 100%; }
.form-photo-content > span { font-size: 10px; letter-spacing: .17em; font-weight: 900; }
.form-photo-content > strong { display: block; font-size: 28px; margin: 7px 0 22px; }
.photo-process { display: flex; align-items: center; gap: 9px; }
.photo-process i { padding: 8px 12px; border: 1px solid rgba(255,255,255,.32); border-radius: 10px; background: rgba(255,255,255,.14); font-style: normal; font-size: 12px; }
.photo-process b { color: #c4b5fd; }
.form-main-panel { border-radius: 0; border: 0; padding: 38px; box-shadow: none; }
.form-main-panel textarea { min-height: 260px; }
.compact-tip { display: flex; align-items: center; gap: 8px; color: #6d648b; padding: 10px 0; font-size: 13px; }
.compact-tip svg { color: #8b5cf6; }

.upload-panel {
  border: 2px dashed #d7d4ef;
  background: linear-gradient(180deg, #fff, #fbfaff);
  padding: 34px 55px 40px;
}
.upload-art { width: min(290px, 80%); margin: -8px auto -5px; }
.upload-art svg { width: 100%; height: auto; }
.upload-art circle { fill: #e8e4ff; stroke: #7465e8; stroke-width: 3; }
.upload-art path { fill: #f5f3ff; stroke: #7465e8; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.upload-panel > label { font-size: 20px; color: var(--ink); }
.upload-panel input[type=file] { border: 0; padding: 12px; background: #f3f1ff; }
.format-chips { display: flex; justify-content: center; gap: 7px; margin: 5px 0 12px; }
.format-chips span { padding: 4px 10px; border-radius: 999px; background: #eff0f7; color: #697386; font-size: 11px; font-weight: 800; }

.job-detail-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 24px;
  padding: 26px 30px;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 78% 10%, rgba(255,255,255,.18), transparent 190px),
    linear-gradient(135deg, #26204e, #6256d8);
}
.job-detail-copy { display: flex; align-items: center; gap: 18px; }
.job-detail-copy h1 { font-size: 30px; margin: 2px 0; }
.job-detail-copy p { color: #d8d5fa; margin: 0; }
.job-detail-copy .section-kicker { color: #a5f3fc; }
.job-detail-icon { width: 62px; height: 62px; display: grid; place-items: center; background: rgba(255,255,255,.14); border-radius: 18px; }
.job-detail-icon svg { width: 30px; height: 30px; }
.rules-panel .section-head { margin-top: 0; }
.criterion-summary { display: grid; grid-template-columns: 1fr auto; align-items: center; }
.criterion-summary > div:first-child { justify-content: flex-start; }
.criterion-dot { width: 9px; height: 9px; border-radius: 50%; background: #8b5cf6; box-shadow: 0 0 0 5px #f0edff; margin-right: 5px; }
.jd-visual-panel { padding: 0; overflow: hidden; }
.jd-photo {
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background:
    linear-gradient(0deg, rgba(31, 25, 73, .7), transparent 70%),
    url("../img/team-collaboration.jpg") center / cover;
}
.jd-photo span { color: white; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.jd-visual-panel details { padding: 17px 22px 20px; }
.jd-visual-panel summary { cursor: pointer; color: var(--primary); font-weight: 800; }
.jd-visual-panel .pre-wrap { max-height: 250px; overflow: auto; margin-top: 14px; font-size: 13px; }

.login-page .site-header, .login-page .site-footer { display: none; }
.login-page .main-content { width: 100%; max-width: none; min-height: 100vh; padding: 0; }
.auth-shell {
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.25fr) minmax(400px, .75fr);
  background: white;
}
.auth-visual {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 7vw;
  background:
    linear-gradient(0deg, rgba(28, 22, 70, .9), rgba(46, 38, 104, .16)),
    url("../img/team-collaboration.jpg") center / cover;
}
.auth-visual-copy { color: white; }
.auth-visual-copy h1 { font-size: clamp(48px, 6vw, 78px); line-height: 1.05; margin: 18px 0 28px; }
.visual-badge { display: inline-flex; padding: 7px 12px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; background: rgba(255,255,255,.12); font-weight: 800; }
.visual-dots { display: flex; gap: 8px; }
.visual-dots span { width: 9px; height: 9px; border-radius: 50%; background: white; opacity: .4; }
.visual-dots span:first-child { width: 34px; border-radius: 8px; opacity: 1; }
.auth-card { width: min(440px, calc(100% - 48px)); border: 0; box-shadow: none; padding: 42px; }
.auth-logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 900; margin-bottom: 60px; }
.auth-card h2 { font-size: 32px; margin-bottom: 25px; }
.login-form { gap: 15px; }
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #9ca3af; width: 18px; height: 18px; }
.input-with-icon input { min-height: 50px; padding-left: 46px; background: #f8f8fc; border-color: #ededf3; }

@media (max-width: 900px) {
  .hero-photo { min-height: 340px; }
  .hero-float-card { display: none; }
  .form-visual-layout { grid-template-columns: 1fr; }
  .form-photo { min-height: 270px; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-card { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
  .auth-logo { margin-bottom: 45px; }
}

@media (max-width: 600px) {
  .nav-link span { display: none; }
  nav .button-small { font-size: 0; width: 38px; height: 38px; padding: 0; }
  nav .button-small svg { width: 18px; height: 18px; }
  .hero-photo { min-height: 330px; padding: 30px; background-position: 62% center; }
  .hero-copy h1 { font-size: 45px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { min-height: 100px; }
  .stat-icon { width: 40px; height: 40px; }
  .stat-card strong { font-size: 25px; }
  .job-detail-hero { align-items: flex-start; flex-direction: column; }
  .job-detail-copy { align-items: flex-start; }
  .job-detail-icon { width: 48px; height: 48px; }
  .form-main-panel { padding: 23px; }
  .form-photo { min-height: 230px; padding: 24px; }
  .upload-panel { padding: 25px 20px 30px; }
  .footer-row { flex-direction: column; gap: 2px; }
}
