.career-page {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--cream);
}

.career-page[hidden] {
  display: none !important;
}

.career-hero {
  position: relative;
  flex: 0 0 34%;
  min-height: 240px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 82% 18%, rgba(120, 140, 180, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 18% 70%, rgba(90, 100, 130, 0.12), transparent 60%),
    linear-gradient(180deg, #12161e 0%, #1a2130 55%, #243044 100%);
}

.tab-sky-haze {
  position: absolute;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 22%, rgba(210, 190, 150, 0.08), transparent 28%),
    radial-gradient(circle at 28% 64%, rgba(160, 175, 210, 0.07), transparent 35%);
  animation: tabHazeDrift 18s ease-in-out infinite alternate;
}

.tab-sky-drift {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.03) 48%, transparent 62%);
  background-size: 220% 220%;
  animation: tabVeilSweep 16s linear infinite;
  mix-blend-mode: soft-light;
}

.tab-sky-spark {
  position: absolute;
  top: 22%;
  left: -18%;
  width: 88px;
  height: 1.5px;
  z-index: 2;
  pointer-events: none;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), #c5ab85);
  opacity: 0;
  transform: rotate(-26deg);
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
  animation: tabSpark 11s ease-in-out infinite;
}

.tab-sky-spark.soft {
  top: 30%;
  animation-duration: 13s;
  animation-delay: 3.5s;
  opacity: 0;
}

.beidou-sky {
  position: absolute;
  top: 36px;
  right: 8px;
  width: 168px;
  height: 130px;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.beidou-sky .bd-line {
  fill: none;
  stroke: rgba(197, 171, 133, 0.55);
  stroke-width: 1.2;
  stroke-dasharray: 3 4;
  animation: bdLineCrawl 10s linear infinite;
}

.beidou-sky .bd-star {
  fill: #f0e6d4;
  filter: drop-shadow(0 0 4px rgba(197, 171, 133, 0.8));
  transform-box: fill-box;
  transform-origin: center;
  animation: bdTwinkle 3.6s ease-in-out infinite;
}

.beidou-sky .bd-star:nth-of-type(1) { animation-delay: 0s; }
.beidou-sky .bd-star:nth-of-type(2) { animation-delay: 0.35s; }
.beidou-sky .bd-star:nth-of-type(3) { animation-delay: 0.7s; }
.beidou-sky .bd-star:nth-of-type(4) { animation-delay: 1.05s; }
.beidou-sky .bd-star:nth-of-type(5) { animation-delay: 1.4s; }
.beidou-sky .bd-star:nth-of-type(6) { animation-delay: 1.75s; }
.beidou-sky .bd-star:nth-of-type(7) { animation-delay: 2.1s; }

.beidou-sky .bd-star.core {
  fill: #c5ab85;
  animation-name: bdCoreGlow;
  animation-duration: 4.2s;
}

.beidou-route .bd-node {
  fill: #c5ab85;
  stroke: rgba(247, 243, 234, 0.9);
  stroke-width: 2;
  animation: bdNodePulse 3.8s ease-in-out infinite;
}

.beidou-route .bd-node:nth-of-type(1) { animation-delay: 0s; }
.beidou-route .bd-node:nth-of-type(2) { animation-delay: 0.4s; }
.beidou-route .bd-node:nth-of-type(3) { animation-delay: 0.8s; }
.beidou-route .bd-node:nth-of-type(4) { animation-delay: 1.2s; }
.beidou-route .bd-node:nth-of-type(5) { animation-delay: 1.6s; }

.beidou-route .bd-path {
  fill: none;
  stroke: rgba(184, 151, 109, 0.45);
  stroke-width: 1.4;
  stroke-dasharray: 4 6;
  animation: bdLineCrawl 14s linear infinite;
}

@keyframes tabHazeDrift {
  from { transform: translate3d(-1.5%, 0, 0) scale(1); }
  to { transform: translate3d(1.5%, -1%, 0) scale(1.04); }
}

@keyframes tabVeilSweep {
  from { background-position: 0% 40%; }
  to { background-position: 100% 60%; }
}

@keyframes tabSpark {
  0%, 78%, 100% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-26deg); }
  80% { opacity: 0.9; }
  92% { opacity: 0; transform: translate3d(220px, 110px, 0) rotate(-26deg); }
}

@keyframes bdTwinkle {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes bdCoreGlow {
  0%, 100% { opacity: 0.75; filter: drop-shadow(0 0 3px rgba(197, 171, 133, 0.55)); }
  50% { opacity: 1; filter: drop-shadow(0 0 7px rgba(197, 171, 133, 0.95)); }
}

@keyframes bdLineCrawl {
  to { stroke-dashoffset: -28; }
}

@keyframes bdNodePulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.career-hero-copy {
  position: absolute;
  left: 28px;
  right: 150px;
  bottom: 22px;
  color: #f3efe6;
  z-index: 3;
}

.career-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 8px;
}

.career-brand {
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 10px;
  color: #f7f1e5;
}

.career-lead {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: rgba(243, 239, 230, 0.72);
  max-width: 250px;
}

/* 一屏看全：内容区不纵向滚动 */
.career-body {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 12px 0 4px;
  background: linear-gradient(180deg, var(--cream) 0%, #e8e1d2 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beidou-route {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.career-pad {
  position: relative;
  z-index: 1;
  padding: 0 22px;
}

/* 1. 事业格局：折中高度 */
.career-pattern {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  margin: 0 22px;
  border-radius: 18px;
  padding: 15px 18px 15px;
  overflow: hidden;
  color: #f7f1e5;
  text-align: left;
  border: 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 210, 150, 0.35), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(120, 160, 210, 0.28), transparent 36%),
    linear-gradient(145deg, #3a4a6a 0%, #2a3148 42%, #4a3a55 100%);
  box-shadow: 0 10px 22px rgba(42, 49, 72, 0.18);
}

.career-pattern:active {
  transform: scale(0.99);
}

.career-pattern-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}

.career-pattern-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(232, 208, 160, 0.92);
}

.career-pattern-title {
  display: block;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: 19px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 6px;
  color: #fff6e8;
}

.career-pattern-desc {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: rgba(243, 239, 230, 0.82);
  max-width: 100%;
}

.career-pattern-mark {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  opacity: 0.75;
}

/* 2. 圆形聊聊：略缩小 */
.career-chat-block {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  margin: 0 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.career-circle {
  aspect-ratio: 1;
  width: 132px;
  height: 132px;
  max-width: 132px;
  justify-self: start;
  border-radius: 50%;
  border: 1px solid rgba(197, 171, 133, 0.35);
  background:
    radial-gradient(circle at 35% 30%, #fffdf8 0%, #f7f3ea 48%, #ece6d9 100%);
  box-shadow: 0 10px 22px rgba(44, 50, 63, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 14px;
  color: var(--ink);
}

.career-circle .seal {
  width: 24px;
  height: 24px;
  font-size: 12px;
  margin-bottom: 6px;
}

.career-circle-title {
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 5px;
}

.career-circle-sub {
  font-size: 10px;
  line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.career-chat-aside {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: rgba(44, 50, 63, 0.58);
}

.career-chat-aside em {
  font-style: normal;
  color: #b8976d;
}

/* 3. 报告馆：紧凑 + 横滑 */
.career-gallery {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  margin-top: 8px;
  padding: 0;
}

.career-gallery-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 22px 6px;
}

.career-gallery-title {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 500;
}

.career-gallery-more {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(44, 50, 63, 0.4);
}

.career-filters {
  display: flex;
  gap: 6px;
  padding: 0 22px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.career-filters::-webkit-scrollbar {
  display: none;
}

.career-filters button {
  flex: 0 0 auto;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid rgba(44, 50, 63, 0.12);
}

.career-filters button.is-on {
  color: #f7f1e5;
  background: #2c323f;
  border-color: #2c323f;
}

.career-gallery-track {
  display: flex;
  gap: 8px;
  padding: 0 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.career-gallery-track::-webkit-scrollbar {
  display: none;
}

.career-report-card {
  position: relative;
  flex: 0 0 124px;
  width: 124px;
  scroll-snap-align: start;
  text-align: left;
  background: var(--paper);
  border-radius: 12px;
  padding: 10px 10px 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 14px rgba(44, 50, 63, 0.05);
  display: flex;
  flex-direction: column;
}

.career-report-card:active {
  transform: scale(0.985);
}

.career-report-card[hidden] {
  display: none !important;
}

.career-report-card.is-locked {
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0.92), rgba(236, 230, 217, 0.88));
  border-color: rgba(176, 152, 118, 0.28);
}

.career-report-card.is-locked .career-report-title,
.career-report-card.is-locked .career-report-desc {
  opacity: 0.72;
}

.career-report-lock {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 14px;
  height: 16px;
  border: 1.4px solid rgba(184, 151, 109, 0.85);
  border-radius: 2px;
  background: rgba(255, 252, 246, 0.55);
}

.career-report-lock::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: -5px;
  height: 6px;
  border: 1.4px solid rgba(184, 151, 109, 0.85);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.career-report-card:not(.is-locked) .career-report-lock {
  display: none;
}

.career-report-card .career-report-title {
  display: block;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 500;
  line-height: 1.3;
  padding-right: 16px;
}

.career-report-card .career-report-desc {
  display: block;
  font-size: 10px;
  line-height: 1.45;
  color: var(--ink-soft);
  flex: 1;
}

.career-report-card .career-report-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 7px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #8a7048;
  background: rgba(197, 171, 133, 0.22);
  border: 1px solid rgba(197, 171, 133, 0.3);
}

.career-report-card .career-report-badge.is-lock {
  color: #9a5a4a;
  background: rgba(200, 143, 122, 0.16);
  border-color: rgba(200, 143, 122, 0.28);
}

.career-report-card:not(.is-locked) .career-report-badge {
  color: #6f8458;
  background: rgba(160, 170, 140, 0.22);
  border-color: rgba(160, 170, 140, 0.35);
}

.career-footer {
  margin-top: auto;
  padding: 4px 22px 2px;
  flex: 0 0 auto;
}

.tab-icon.career {
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
}

.tab-icon.career::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 3px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 3px 0 currentColor, 0 6px 0 currentColor;
  opacity: 0.85;
}
