/* 职来 · 与主站同一套设计语言：深空底、橙色点缀、黑白双洞 */
:root {
  color-scheme: dark;
  --void: #000000;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --surface-hover: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f5f7;
  --text-soft: rgba(244, 245, 247, 0.72);
  --text-muted: rgba(244, 245, 247, 0.42);
  --orange: #f0873e;
  --orange-hot: #ffb06a;
  --accent-ink: #f0873e;
  --ok: #7ed99f;
  --info: #a8b4ff;
  --warn: #f0b072;
  --danger: #f0918c;
  --neutral: #c6cad4;
  --sb-thumb: rgba(255, 255, 255, 0.14);
  --sb-thumb-hover: rgba(240, 135, 62, 0.62);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --label: "Archivo", "Noto Sans SC", "PingFang SC", sans-serif;
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1240px;
}
body.light {
  color-scheme: light;
  --void: #f7f7f4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-hover: rgba(255, 255, 255, 0.95);
  --line: rgba(15, 15, 15, 0.1);
  --line-strong: rgba(15, 15, 15, 0.2);
  --text: #111111;
  --text-soft: rgba(17, 17, 17, 0.68);
  --text-muted: rgba(17, 17, 17, 0.45);
  --orange: #111111;
  --orange-hot: #111111;
  --accent-ink: #111111;
  --ok: #1c6b45;
  --info: #3b4bb8;
  --warn: #8a5a12;
  --danger: #9d3b36;
  --neutral: #555a63;
  --sb-thumb: rgba(17, 17, 17, 0.2);
  --sb-thumb-hover: rgba(17, 17, 17, 0.5);
}
* {
  box-sizing: border-box;
}
/* 滚动条：与主站同一套（Firefox 走标准属性，Chrome/Safari/Edge 走 ::-webkit-scrollbar） */
@supports not selector(::-webkit-scrollbar) {
  html,
  .table-wrap,
  dialog {
      scrollbar-color: var(--sb-thumb) transparent;
  }
}
html::-webkit-scrollbar,
.table-wrap::-webkit-scrollbar,
dialog::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
html::-webkit-scrollbar-track,
.table-wrap::-webkit-scrollbar-track,
dialog::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb,
.table-wrap::-webkit-scrollbar-thumb,
dialog::-webkit-scrollbar-thumb {
  background: var(--sb-thumb);
  border: 3px solid transparent;
  border-radius: 999px;
  background-clip: content-box;
}
html::-webkit-scrollbar-thumb:hover,
.table-wrap::-webkit-scrollbar-thumb:hover,
dialog::-webkit-scrollbar-thumb:hover {
  background: var(--sb-thumb-hover);
  background-clip: content-box;
}
html::-webkit-scrollbar-corner,
.table-wrap::-webkit-scrollbar-corner,
dialog::-webkit-scrollbar-corner {
  background: transparent;
}
/* 页面滚动条挂在 html 上，拿不到 body.light 的变量，亮色主题单独覆盖 */
html:has(body.light) {
  scrollbar-color: rgba(17, 17, 17, 0.2) transparent;
}
html:has(body.light)::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.2);
}
html:has(body.light)::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 17, 17, 0.5);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--void);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::selection {
  background: var(--orange);
  color: #000;
}
h1,
h2,
h3,
p {
  margin: 0;
}
small {
  font-size: 0.78rem;
  color: var(--text-muted);
}
strong {
  font-weight: 600;
}
a {
  color: var(--accent-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
select,
summary {
  cursor: pointer;
}
button,
a,
summary {
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 3px;
}
.space-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 72% 42%, rgba(80, 96, 180, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 35% at 20% 80%, rgba(240, 135, 62, 0.06), transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 40%),
    var(--void);
}
.space-noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body.light .space-field {
  background:
    radial-gradient(ellipse 44% 32% at 74% 38%, rgba(0, 0, 0, 0.075), transparent 68%),
    radial-gradient(ellipse 34% 24% at 14% 88%, rgba(0, 0, 0, 0.035), transparent 72%),
    linear-gradient(180deg, #fbfbf9 0%, #f2f2ef 100%);
}
body.light .space-noise {
  opacity: 0.028;
  mix-blend-mode: multiply;
}
.container,
.header-inner {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}
main.container {
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
}
section {
  scroll-margin-top: 96px;
}
.app-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.62) 62%,
    rgba(0, 0, 0, 0.38) 100%
  );
  border-bottom: 1px solid var(--line);
}
body.light .app-header {
  background: linear-gradient(
    to bottom,
    rgba(247, 247, 244, 0.94) 0%,
    rgba(247, 247, 244, 0.78) 62%,
    rgba(247, 247, 244, 0.52) 100%
  );
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.logo-mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: none;
}
.logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(240, 135, 62, 0.35));
}
.logo-mark--light {
  display: none;
}
body.light .logo-mark--dark {
  display: none;
}
body.light .logo-mark--light {
  display: inline-flex;
}
body.light .logo-mark--light svg {
  filter: drop-shadow(0 0 8px rgba(107, 124, 255, 0.4));
}
.brand-word {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand-tag {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  font-family: var(--label);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--label);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.live-dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--orange-hot);
  box-shadow: 0 0 0 4px rgba(240, 135, 62, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
body.light .live-dot {
  background: #111;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
  animation: none;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  color: var(--text-soft);
  text-decoration: none;
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}
body.light .nav-links a {
  color: rgba(17, 17, 17, 0.58);
}
body.light .nav-links a:hover,
body.light .nav-links a:focus-visible {
  color: #111;
}
.theme-btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  transition:
    transform 0.3s ease,
    border-color 0.25s ease;
}
.theme-btn:hover {
  transform: rotate(24deg);
  border-color: var(--accent-ink);
  background: transparent;
}
.theme-btn svg {
  display: block;
  width: 18px;
  height: 18px;
}
.hole-i {
  display: inline-flex;
}
.hole-i--light {
  display: none;
}
body.light .hole-i--dark {
  display: none;
}
body.light .hole-i--light {
  display: inline-flex;
}
.intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 58px 0 46px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-family: var(--label);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.intro h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.intro h1 .line {
  display: block;
}
.intro h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #fff 0%, #c5ceff 42%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.light .intro h1 em {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #111;
}
.intro-lede {
  max-width: 46ch;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 0.98rem;
}
.data-note {
  display: grid;
  gap: 4px;
  min-width: 232px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.data-note span {
  font-family: var(--label);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.data-note strong {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--text);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.quiet,
.section-heading .quiet {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.section-heading .quiet {
  font-family: var(--label);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}
.section-description {
  margin-bottom: 16px;
  color: var(--text-soft);
  font-size: 0.88rem;
}
.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-soft);
  font-size: 0.9rem;
}
.notice strong {
  display: block;
  color: var(--text);
}
.error-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.notice.error {
  border-color: rgba(240, 145, 140, 0.38);
  background: rgba(240, 145, 140, 0.08);
  color: var(--text);
}
.filter-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 40%),
    var(--surface);
  overflow: clip;
}
body.light .filter-panel {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.6)),
    var(--surface);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.06);
}
.filter-panel fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.season-tabs {
  display: flex;
  gap: 8px;
  padding: 18px 22px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.season-tabs::-webkit-scrollbar {
  display: none;
}
.season-tabs button {
  min-height: 38px;
  padding: 6px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: transparent;
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 0.85rem;
}
.season-tabs button:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}
.season-tabs button[aria-pressed="true"] {
  border-color: var(--orange);
  background: var(--orange);
  color: #000;
  font-weight: 700;
}
body.light .season-tabs button:hover {
  border-color: #111;
  color: #111;
}
body.light .season-tabs button[aria-pressed="true"] {
  border-color: #111;
  background: #111;
  color: #fff;
}
.primary-filters {
  display: grid;
  grid-template-columns: minmax(240px, 2.4fr) repeat(3, minmax(118px, 1fr));
  gap: 16px;
  padding: 22px 22px 16px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
input,
select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
input::placeholder {
  color: var(--text-muted);
}
input:hover,
select:hover {
  border-color: rgba(255, 255, 255, 0.28);
}
body.light input:hover,
body.light select:hover {
  border-color: rgba(17, 17, 17, 0.32);
}
input:focus,
select:focus {
  border-color: var(--accent-ink);
  background: var(--surface-strong);
  outline: none;
}
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 2px;
}
select option {
  background: #0c0c0e;
  color: var(--text);
}
body.light select option {
  background: #fff;
  color: #111;
}
input[type="search"] {
  padding-left: 14px;
}
select {
  padding-right: 28px;
}
.filter-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px 18px;
}
#moreFilters {
  flex: 1 1 auto;
  min-width: 0;
}
.filter-bottom #reset {
  flex: none;
}
.filter-bottom summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-soft);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  list-style: none;
}
.filter-bottom summary::-webkit-details-marker {
  display: none;
}
.filter-bottom summary::after {
  content: "+";
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1;
}
.filter-bottom details[open] summary {
  border-color: var(--accent-ink);
  color: var(--text);
}
.filter-bottom details[open] summary::after {
  content: "–";
  color: var(--accent-ink);
}
#advancedCount {
  color: var(--accent-ink);
}
.advanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  padding: 20px 0 6px;
}
button {
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 0.85rem;
}
button:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(240, 135, 62, 0.06);
}
button:disabled {
  opacity: 0.4;
  cursor: default;
}
button:disabled:hover {
  border-color: var(--line-strong);
  color: var(--text-soft);
  background: transparent;
}
body.light button:hover {
  border-color: #111;
  color: #111;
  background: rgba(17, 17, 17, 0.04);
}
body.light button:disabled:hover {
  border-color: var(--line-strong);
  color: var(--text-soft);
}
.text-button {
  background: transparent;
}
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 22px 0 14px;
}
#resultCount {
  color: var(--text-soft);
  font-family: var(--display);
  font-size: 0.95rem;
}
#resultCount strong {
  margin-right: 3px;
  color: var(--text);
  font-family: var(--label);
  font-size: 1.15rem;
}
.sort-label {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sort-label select {
  width: auto;
  min-width: 156px;
  min-height: 40px;
  border-radius: 999px;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 40%),
    var(--surface);
  scrollbar-width: thin;
}
body.light .table-wrap {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
    var(--surface);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.05);
}
table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.9rem;
}
th:nth-child(1),
td:nth-child(1) {
  width: 21%;
}
th:nth-child(2),
td:nth-child(2) {
  width: 25%;
}
th:nth-child(3),
td:nth-child(3) {
  width: 17%;
}
th:nth-child(4),
td:nth-child(4) {
  width: 18%;
}
th:nth-child(5),
td:nth-child(5) {
  width: 19%;
}
th {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}
td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
tbody tr {
  transition: background-color 0.2s ease;
}
tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
body.light tbody tr:hover {
  background: rgba(17, 17, 17, 0.02);
}
tbody tr:last-child td {
  border-bottom: 0;
}
.subline {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.company-button,
.event-button {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--text);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: left;
}
.company-button:hover,
.event-button:hover {
  border-color: transparent;
  background: none;
  color: var(--orange);
}
body.light .company-button:hover,
body.light .event-button:hover {
  color: #111;
  text-decoration: underline;
}
.company-button::after {
  content: " ›";
  color: var(--accent-ink);
  font-weight: 400;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.72rem;
}
body.light .tag {
  background: rgba(17, 17, 17, 0.03);
}
.more-tag {
  min-height: 26px;
  padding: 2px 10px;
  border-style: dashed;
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--body);
  font-size: 0.72rem;
}
.more-tag:hover {
  border-color: var(--accent-ink);
  color: var(--accent-ink);
  background: transparent;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--label);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.badge::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: currentColor;
}
.badge.active {
  color: var(--ok);
}
.badge.upcoming {
  color: var(--info);
}
.badge.closed {
  color: var(--text-muted);
}
.badge.stale {
  color: var(--warn);
}
.badge.unverified {
  color: var(--neutral);
}
.apply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--void);
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
}
.apply-link:hover {
  transform: translateY(-1px);
  color: var(--void);
  box-shadow: 0 10px 30px rgba(240, 135, 62, 0.2);
}
body.light .apply-link {
  background: #111;
  color: #fff;
}
body.light .apply-link:hover {
  color: #fff;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.16);
}
.row-actions {
  display: grid;
  gap: 8px;
  justify-items: start;
}
.row-actions .apply-link,
.detail-actions .apply-link {
  margin-top: 0;
}
.detail-actions .apply-link {
  margin-top: 0;
}
td:last-child {
  white-space: nowrap;
}
.job-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 40%),
    var(--surface);
  transition:
    border-color 0.3s ease,
    transform 0.3s var(--ease-out);
}
.job-card + .job-card {
  margin-top: 12px;
}
.job-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
body.light .job-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
}
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.card-meta {
  color: var(--text-soft);
  font-size: 0.85rem;
}
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.empty-state {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 46px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}
.empty-state svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.empty-state h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
}
.empty-state p {
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.empty-state button {
  margin-top: 6px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 0 4px;
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.secondary-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}
.guide-list {
  padding: 4px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.guide-item {
  border-top: 1px solid var(--line);
}
.guide-item:first-child {
  border-top: 0;
}
.guide-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
  padding: 6px 0;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  list-style: none;
}
.guide-item summary::-webkit-details-marker {
  display: none;
}
.guide-item summary::after {
  content: "+";
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 1.05rem;
  line-height: 1;
}
.guide-item[open] summary::after {
  content: "–";
  color: var(--accent-ink);
}
.guide-body {
  display: grid;
  gap: 10px;
  padding: 2px 0 24px;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.guide-body h3 {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}
.guide-body button {
  justify-self: start;
  margin-top: 4px;
}
.calendar-summary {
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 0.88rem;
}
.calendar-events {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.calendar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.calendar-step {
  width: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
}
#calendarDate {
  width: auto;
  min-width: 150px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--label);
  font-size: 0.78rem;
}
/* 单日视图：一天一页，事件按行列出 */
.calendar-events li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.calendar-events li:first-child {
  border-top: 0;
}
.event-kind {
  padding: 2px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}
.event-button {
  display: grid;
  gap: 2px;
  font-size: 0.95rem;
}
.event-button small {
  color: var(--text-muted);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 400;
}
footer {
  display: grid;
  gap: 6px;
  margin-top: 56px;
  padding: 26px 0 10px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.78rem;
}
footer p:first-child {
  color: var(--text-soft);
  font-family: var(--display);
  font-size: 0.9rem;
}
dialog {
  width: min(720px, calc(100% - 32px));
  max-height: 88dvh;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--void);
  color: var(--text);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.62);
}
body.light dialog {
  background: #fff;
  box-shadow: 0 40px 120px rgba(17, 17, 17, 0.2);
}
dialog.fallback {
  position: fixed;
  inset: 0;
  z-index: 60;
  width: min(720px, calc(100% - 32px));
  height: fit-content;
  margin: auto;
  max-height: 88dvh;
  overflow: auto;
}
body.dialog-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.62);
}
body.light.dialog-open::before {
  background: rgba(17, 17, 17, 0.32);
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}
body.light dialog::backdrop {
  background: rgba(17, 17, 17, 0.32);
}
.dialog-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--void);
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.light .dialog-header {
  background: #fff;
}
#detailContent {
  padding: 24px 24px 32px;
}
#detailContent h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
#detailContent > .badge {
  margin-top: 12px;
}
#detailContent h3 {
  margin: 26px 0 12px;
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
#detailContent dl {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  margin: 24px 0 0;
  font-size: 0.9rem;
}
dt {
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
dd {
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-line;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.sources {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  list-style: none;
}
.sources li {
  display: grid;
  gap: 2px;
  overflow-wrap: anywhere;
}
.detail-note {
  margin-top: 16px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.8rem;
}
.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;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -90px;
  z-index: 60;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--text);
  color: var(--void);
  text-decoration: none;
}
.skip-link:focus {
  top: 12px;
}
.result-companies {
  color: var(--text-muted);
}
@media (max-width: 1000px) {
  .container,
  .header-inner {
    width: calc(100% - 40px);
  }
  .nav-status {
    display: none;
  }
  .primary-filters {
    grid-template-columns: minmax(190px, 1.8fr) repeat(3, minmax(102px, 1fr));
    gap: 12px;
  }
  .secondary-sections {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .container,
  .header-inner {
    width: calc(100% - 32px);
  }
  .app-header {
    padding: 12px 0;
  }
  .brand-tag {
    display: none;
  }
  .brand-word {
    font-size: 1rem;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }
  .intro {
    display: block;
    padding: 32px 0 28px;
  }
  .intro h1 {
    font-size: clamp(1.6rem, 7.4vw, 2.1rem);
  }
  .intro-lede {
    margin-top: 14px;
    font-size: 0.88rem;
  }
  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.6rem;
  }
  .data-note {
    display: none;
  }
  .section-heading {
    margin-bottom: 14px;
  }
  .section-heading .quiet {
    display: none;
  }
  .season-tabs {
    gap: 6px;
    padding: 14px 14px 0;
  }
  .season-tabs button {
    min-height: 34px;
    padding: 5px 14px;
    font-size: 0.8rem;
  }
  .primary-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 16px 14px 10px;
  }
  .search-field {
    grid-column: 1 / -1;
  }
  .filter-bottom {
    padding: 0 14px 14px;
  }
  .advanced-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .results-bar {
    min-height: 64px;
    padding: 16px 0 10px;
  }
  #resultCount strong {
    font-size: 1.05rem;
  }
  .sort-label select {
    min-width: 128px;
  }
  .job-card {
    padding: 18px;
  }
  .empty-state {
    padding: 30px 18px;
  }
  .secondary-sections {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 40px;
    padding-top: 32px;
  }
  .guide-list {
    padding: 2px 18px;
  }
  .notice {
    flex-direction: column;
    align-items: flex-start;
  }
  #detailContent dl {
    grid-template-columns: 84px 1fr;
    font-size: 0.85rem;
    gap: 10px;
  }
  .dialog-header {
    padding: 12px 18px;
  }
  #detailContent {
    padding: 20px 18px 26px;
  }
  .result-companies {
    display: none;
  }
}
@media (max-width: 360px) {
  .brand-word {
    display: none;
  }
  .nav-links {
    gap: 10px;
  }
  .primary-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sort-label {
    font-size: 0;
  }
  .sort-label select {
    font-size: 0.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

