:root {
  --site-max-width: 1500px;
  --site-gutter: clamp(20px, 4vw, 48px);
  --content-readable: 920px;
  --ink: #07111f;
  --muted: #46546b;
  --line: #c5d2e4;
  --paper: #ffffff;
  --soft: #f2f7ff;
  --green: #1768d4;
  --green-dark: #0a3477;
  --amber: #f6b21a;
  --blue: #e53946;
  --red: #e53946;
  --blue-soft: #eaf3ff;
  --red-soft: #fff1f2;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(17, 18, 20, 0.13);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei",
    "Noto Sans TC", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js-reveal [data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 680ms ease;
}

html.js-reveal [data-reveal].is-visible {
  transform: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-family, inherit);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.site-container {
  width: min(calc(100% - var(--site-gutter) * 2), var(--site-max-width));
  margin-inline: auto;
}

.content-narrow {
  max-width: var(--content-readable);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(221, 226, 230, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo-text {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 27px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: 0;
}

.site-logo-text::before {
  content: "";
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 42%, #fff 0 16%, transparent 17%),
    linear-gradient(135deg, var(--green), var(--red));
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 292px;
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: 232px;
  height: auto;
}

.brand-lockup {
  flex: 0 0 auto;
}

.brand-talisman {
  display: inline-flex;
  width: 34px;
  height: 44px;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 18px rgba(229, 57, 70, 0.22));
}

.brand-talisman svg {
  display: block;
  width: 100%;
  height: 100%;
}

.talisman-paper {
  fill: #fff7dc;
  stroke: var(--amber);
  stroke-width: 2;
}

.talisman-fire {
  fill: var(--red);
}

.talisman-stroke {
  fill: none;
  stroke: var(--green-dark);
  stroke-linecap: round;
  stroke-width: 2.2;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 13px;
  color: #101419;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 650;
}

.menu a:hover,
.menu a:focus {
  background: var(--soft);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.language-switcher a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border-radius: 6px;
  color: #1f2429;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus,
.language-switcher a.is-active {
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero-section {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
  padding: clamp(74px, 9vw, 132px) 0 clamp(84px, 10vw, 148px);
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 22, 54, 0.9) 0%, rgba(12, 45, 93, 0.7) 46%, rgba(229, 57, 70, 0.18) 100%),
    var(--hero-bg);
  background-position: center;
  background-size: cover;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  max-width: 720px;
  text-wrap: balance;
}

.hero-content .eyebrow,
.hero-content .hero-lede {
  color: rgba(255, 255, 255, 0.9);
}

.hero-content .quick-filter-bar a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.hero-content .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.hero-search-strip {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding-bottom: 28px;
}

.home-stat-band {
  padding: 6px 0 38px;
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-stat-card {
  min-height: 132px;
  padding: 20px;
  border: 1px solid #b8cbd4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(17, 18, 20, 0.085);
}

.home-stat-card strong,
.home-stat-card span {
  display: block;
}

.home-stat-card strong {
  color: #0a3477;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

.home-stat-card span {
  margin-top: 8px;
  color: #33414d;
  font-weight: 760;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5vw, 5.3rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-lede,
.section-heading p,
.hero-copy p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 840;
  text-decoration: none;
}

.button-primary,
button.button-primary,
input[type="submit"] {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green) 58%, #0f8ed5);
  box-shadow: 0 10px 26px rgba(23, 104, 212, 0.2);
}

.button-secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: #b8c5cf;
}

.job-search-card,
.apply-panel,
.content-card,
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.section-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.section-visual {
  aspect-ratio: 4 / 3;
}

.section-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-search-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-color: #bcc8d2;
  box-shadow: 0 12px 34px rgba(17, 18, 20, 0.08);
}

.alert-form {
  display: grid;
  gap: 12px;
}

.job-search-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.job-search-card label,
.jobkong-form label {
  display: grid;
  gap: 7px;
  color: #1d2730;
  font-weight: 820;
}

.job-search-card span,
.jobkong-form span {
  color: #26333f;
  font-size: 0.95rem;
}

.job-search-card .button,
.alert-form .button {
  min-height: 44px;
  white-space: nowrap;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #b9c6d1;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 650;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 104, 212, 0.22);
  border-color: var(--green-dark);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input[type="file"] {
  padding: 10px;
  background: #fff;
}

input[type="file"]::file-selector-button {
  min-height: 36px;
  margin-right: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: var(--blue-soft);
  font: inherit;
  font-weight: 820;
}

.section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-light {
  background: var(--soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.category-grid,
.post-grid,
.employer-card-grid,
.info-card-grid,
.blog-card-grid,
.student-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.blog-card-grid,
.student-path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.job-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card,
.content-card {
  padding: 22px;
  border-color: #c7d2dc;
  box-shadow: 0 10px 28px rgba(17, 18, 20, 0.045);
}

.category-grid-enhanced .category-card,
.content-card {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.category-grid-enhanced .category-card {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 104, 212, 0.09), rgba(229, 57, 70, 0.05)),
    #fff;
}

.category-grid-enhanced .category-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--green), var(--amber));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.category-grid-enhanced .category-card:hover,
.category-grid-enhanced .category-card:focus-within,
.content-card:hover {
  border-color: rgba(23, 104, 212, 0.58);
  box-shadow: 0 18px 50px rgba(17, 18, 20, 0.13);
  transform: translateY(-3px);
}

.category-grid-enhanced .category-card:hover::after,
.category-grid-enhanced .category-card:focus-within::after {
  transform: scaleX(1);
}

.category-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 50%;
  background: var(--green);
  font-weight: 850;
}

.category-card p,
.content-card p {
  color: #3f4b55;
  font-size: 1rem;
}

.content-card .eyebrow,
.category-card .eyebrow {
  color: #0a3477;
  font-weight: 900;
}

.category-card a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.career-hub-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7fafb 100%);
}

.career-hub-layout,
.home-platform-layout,
.blog-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.career-hub-layout {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 226, 230, 0.95);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 24px 70px rgba(17, 18, 20, 0.12);
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card-raised {
  aspect-ratio: 4 / 3;
}

.career-visual-panel,
.platform-visual-panel {
  position: relative;
}

.floating-metric-card {
  position: absolute;
  display: grid;
  gap: 3px;
  max-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(221, 226, 230, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(17, 18, 20, 0.12);
}

.floating-metric-card strong {
  color: #0a3477;
}

.floating-metric-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.floating-metric-a {
  left: -18px;
  bottom: 30px;
}

.floating-metric-b {
  right: -14px;
  top: 24px;
}

.career-hub-content,
.platform-copy {
  min-width: 0;
}

.career-hub-content > p:not(.eyebrow),
.platform-copy > p:not(.eyebrow),
.blog-preview-layout .section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.career-card-row,
.blog-topic-grid,
.platform-step-grid {
  display: grid;
  gap: 14px;
}

.career-card-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.career-mini-card {
  min-height: 188px;
}

.career-mini-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.career-alert-panel {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(23, 104, 212, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 104, 212, 0.1), rgba(229, 57, 70, 0.08)),
    #fff;
}

.career-alert-panel h3 {
  font-size: 1.42rem;
}

.blog-preview-layout {
  align-items: start;
}

.blog-topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-topic-card {
  min-height: 212px;
}

.platform-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.platform-step-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.platform-step-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(221, 226, 230, 0.96);
  border-radius: var(--radius);
  background: #fff;
}

.platform-step-card strong {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
}

.platform-step-card span {
  font-weight: 780;
}

.platform-image-card {
  aspect-ratio: 16 / 10;
}

.platform-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.platform-pipeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--blue), var(--green));
  background-size: 220% 100%;
  transform: translateY(-50%);
  animation: pipeline-flow 5.8s linear infinite;
}

.platform-pipeline span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(221, 226, 230, 0.9);
  border-radius: var(--radius);
  color: #0a3477;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 850;
}

@keyframes pipeline-flow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}

.home-cta-band {
  padding: clamp(54px, 6vw, 84px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 104, 212, 0.2), transparent 42%),
    #101314;
}

.home-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
}

.home-cta-inner .eyebrow,
.home-cta-inner p {
  color: rgba(255, 255, 255, 0.72);
}

.home-cta-inner h2 {
  max-width: 960px;
  font-size: clamp(2rem, 2.75vw, 3rem);
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.home-cta-band .button-primary {
  color: var(--ink);
  background: #fff;
}

.home-cta-band .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.quick-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.quick-filter-bar a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(23, 104, 212, 0.28);
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.category-section-list {
  display: grid;
  gap: 30px;
}

.category-job-section {
  display: grid;
  gap: 16px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.compact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
}

.compact-heading h2 {
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.employer-card {
  display: grid;
  gap: 10px;
}

.company-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.company-logo-preview {
  display: block;
  width: 72px;
  height: 72px;
  margin: 8px 0;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.company-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin-bottom: 0;
}

.student-zone-card {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.student-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.54fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: start;
  margin-bottom: 26px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(23, 104, 212, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 104, 212, 0.13), rgba(229, 57, 70, 0.08)),
    #fff;
}

.student-hero-copy {
  display: grid;
  gap: 14px;
}

.student-hero-copy h2 {
  max-width: 820px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}

.student-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.student-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.student-highlights {
  display: grid;
  gap: 10px;
}

.student-highlights span {
  display: block;
  padding: 14px 15px;
  border: 1px solid rgba(23, 104, 212, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.student-path-card,
.blog-card {
  display: grid;
  gap: 12px;
}

.student-path-card .button,
.blog-card .button {
  align-self: end;
  justify-self: start;
  margin-top: auto;
}

.student-job-section {
  display: grid;
  gap: 16px;
}

.student-alert-panel,
.blog-newsletter-panel {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.student-alert-panel h3,
.blog-newsletter-panel h3 {
  font-size: 1.45rem;
}

.rule-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mobile-entry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 24px;
  align-items: start;
}

.mobile-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-checklist li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-weight: 750;
}

.jobkong-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.jobkong-pagination a {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.jobkong-pagination a.is-current {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.split-section,
.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-panel {
  display: grid;
  gap: 16px;
}

.feature-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-list strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
}

.page-hero {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 22, 54, 0.9), rgba(12, 45, 93, 0.62), rgba(229, 57, 70, 0.16)),
    url("../img/jobkong-hero-ai-no-face-v01.webp") center / cover;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.job-detail-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.job-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.job-meta-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-soft), #fff);
}

.job-meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.job-meta-grid strong {
  display: block;
  margin-top: 4px;
}

.apply-panel {
  position: sticky;
  top: 98px;
  padding: 22px;
}

.job-detail-content,
.article-body {
  min-width: 0;
}

.site-footer {
  padding: 64px 0 24px;
  color: #dce5e1;
  background:
    linear-gradient(135deg, rgba(23, 104, 212, 0.12), rgba(229, 57, 70, 0.08) 42%, transparent 72%),
    #111214;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) repeat(4, minmax(145px, 0.32fr));
  gap: clamp(22px, 3vw, 34px);
}

.footer-logo-image {
  width: auto;
  max-width: 360px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.site-logo.footer-logo-image img,
.footer-logo-image img {
  width: min(292px, calc(100vw - 120px));
  max-width: 292px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-image .brand-talisman {
  flex: 0 0 34px;
}

.footer-brand p {
  max-width: 520px;
  color: #aeb8b4;
  font-size: 1.08rem;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links h2 {
  color: #fff;
  font-size: 1rem;
}

.footer-links a {
  color: #dce5e1;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aeb8b4;
}

.notice {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #f2f7ff;
  border: 1px solid rgba(23, 104, 212, 0.35);
}

.notice.error {
  background: #fff2f2;
  border-color: #e6a2a2;
}

.jobkong-search {
  display: grid;
  gap: 22px;
}

.candidate-stream-tools {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(23, 104, 212, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 104, 212, 0.1), rgba(229, 57, 70, 0.06)),
    #fff;
  box-shadow: 0 16px 42px rgba(17, 18, 20, 0.08);
}

.candidate-stream-copy {
  display: grid;
  gap: 8px;
}

.candidate-stream-copy h2,
.candidate-stream-copy p {
  margin: 0;
}

.candidate-stream-copy h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.candidate-stream-status {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(229, 57, 70, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.candidate-stream-status span,
.candidate-stream-status strong {
  color: var(--ink);
  font-weight: 880;
}

.candidate-stream-status a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.candidate-filter-chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.candidate-filter-chips a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(23, 104, 212, 0.28);
  border-radius: 999px;
  color: #10233f;
  background: #fff;
  font-weight: 860;
  text-decoration: none;
}

.candidate-filter-chips a:hover,
.candidate-filter-chips a:focus {
  border-color: rgba(229, 57, 70, 0.42);
  background: var(--red-soft);
}

.job-stream-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.54fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.job-stream-list {
  display: grid;
  max-height: calc(100vh - 132px);
  gap: 12px;
  overflow: auto;
  padding-right: 6px;
  scrollbar-gutter: stable;
}

.job-stream-summary,
.job-stream-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.job-stream-summary {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: var(--muted);
}

.job-stream-summary strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.job-stream-preview {
  position: sticky;
  top: 98px;
  min-height: 580px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.job-preview-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.job-preview-title-row h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.job-preview-title-row strong,
.job-card-salary {
  color: var(--red);
  font-weight: 920;
}

.job-preview-title-row strong {
  white-space: nowrap;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
}

.job-preview-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.job-preview-section h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.job-threshold-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-threshold-grid span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(229, 57, 70, 0.24);
  border-radius: 999px;
  color: #74131d;
  background: var(--red-soft);
  font-weight: 860;
}

.job-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.decision-item {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(23, 104, 212, 0.2);
  border-radius: var(--radius);
  background: #f8fbff;
}

.decision-item span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 820;
}

.decision-item strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.28;
}

.decision-item.is-salary {
  border-color: rgba(229, 57, 70, 0.28);
  background: var(--red-soft);
}

.decision-item.is-salary strong {
  color: var(--red);
}

.job-stream-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.job-card {
  display: grid;
  min-height: 254px;
  align-content: start;
  gap: 12px;
  border-color: #b9c9d3;
  background:
    linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.job-card:hover,
.job-card:focus-within,
.job-card.is-active {
  border-color: rgba(23, 104, 212, 0.72);
  box-shadow: 0 18px 42px rgba(23, 104, 212, 0.13);
}

.job-card-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.job-card h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.45vw, 1.48rem);
  line-height: 1.16;
}

.job-card h3 a {
  color: #07090c;
  text-decoration: none;
}

.job-card h3 a:hover,
.job-card h3 a:focus {
  color: var(--green);
}

.job-card-salary {
  white-space: nowrap;
  font-size: 1.08rem;
}

.job-card p {
  margin: 0;
  color: #35414c;
  font-size: 1.02rem;
  line-height: 1.68;
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 14px 0 4px;
}

.job-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(23, 104, 212, 0.22);
  border-radius: 999px;
  color: #10233f;
  background: var(--blue-soft);
  font-size: 0.94rem;
  font-weight: 860;
  line-height: 1.25;
}

.job-card-meta b {
  margin-right: 6px;
  color: var(--green-dark);
  font-size: 0.78rem;
}

.job-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.button-ghost {
  color: var(--green-dark);
  border-color: rgba(23, 104, 212, 0.28);
  background: #fff;
}

.button-ghost.is-saved,
.save-job-button.is-saved {
  color: #74131d;
  border-color: rgba(229, 57, 70, 0.35);
  background: var(--red-soft);
}

.job-card .button {
  align-self: end;
  justify-self: start;
}

.jobkong-form {
  display: grid;
  gap: 14px;
}

.saved-resume-card {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(23, 104, 212, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 104, 212, 0.08), rgba(229, 57, 70, 0.04)),
    #fff;
}

.saved-resume-card h3,
.saved-resume-card p {
  margin: 0;
}

.saved-resume-card a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

.fast-apply-form .button-primary {
  width: 100%;
}

.fast-apply-checklist,
.resume-step-list,
.candidate-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fast-apply-checklist {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.fast-apply-checklist li,
.resume-step-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(23, 104, 212, 0.22);
  border-radius: 999px;
  color: #10233f;
  background: var(--blue-soft);
  font-weight: 820;
}

.resume-builder-panel,
.job-detail-nudge {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(23, 104, 212, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 104, 212, 0.08), rgba(229, 57, 70, 0.04)),
    #fff;
}

.resume-builder-panel h2,
.resume-builder-panel p,
.job-detail-nudge h2,
.job-detail-nudge p {
  margin: 0;
}

.job-detail-nudge .button {
  justify-self: start;
}

.candidate-dashboard-actions {
  margin-bottom: 16px;
}

.jobkong-form small {
  color: var(--muted);
  font-weight: 500;
}

.jobkong-form h2 {
  font-size: 1.45rem;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500 !important;
}

.checkbox-label input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.jobkong-dashboard {
  display: grid;
  gap: 24px;
}

.jobkong-company-profile {
  display: grid;
  gap: 14px;
}

.jobkong-company-profile h3 {
  font-size: 1.35rem;
}

.jobkong-human-check input {
  max-width: 220px;
}

.alert-form .jobkong-human-check input {
  max-width: none;
}

.career-alert-panel .alert-form {
  gap: 14px;
}

.career-alert-panel .button {
  width: 100%;
}

.jobkong-hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.jobkong-floating-contact {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: #16a66a;
  box-shadow: 0 14px 36px rgba(17, 18, 20, 0.24);
  font-weight: 850;
  text-decoration: none;
}

.jobkong-floating-contact:hover,
.jobkong-floating-contact:focus {
  background: var(--green-dark);
}

.jobkong-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.jobkong-table-wrap table,
.widefat {
  width: 100%;
  border-collapse: collapse;
}

.jobkong-table-wrap th,
.jobkong-table-wrap td,
.widefat th,
.widefat td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.jobkong-table-wrap th,
.widefat th {
  background: var(--soft);
}

@media (max-width: 1120px) {
  .candidate-stream-tools {
    grid-template-columns: 1fr;
  }

  .job-stream-shell {
    grid-template-columns: 1fr;
  }

  .job-stream-list {
    max-height: none;
    padding-right: 0;
    overflow: visible;
  }

  .job-stream-preview {
    position: static;
    min-height: auto;
  }

  .home-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .job-card-grid,
  .employer-card-grid,
  .info-card-grid,
  .blog-card-grid,
  .student-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-card-row,
  .blog-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .job-search-card {
    grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(160px, 1fr)) auto;
    align-items: end;
  }

  .job-search-card label,
  .alert-form label {
    min-width: 0;
  }

  .job-search-actions {
    align-self: end;
    flex-wrap: nowrap;
  }

  .alert-form-wide {
    grid-template-columns: minmax(190px, 0.85fr) repeat(3, minmax(150px, 1.05fr)) minmax(180px, 0.75fr) auto;
    align-items: end;
  }

  .alert-form-wide .jobkong-human-check,
  .alert-form-wide .button {
    align-self: end;
  }

  .alert-form-wide .jobkong-human-check span {
    white-space: nowrap;
  }

  .career-alert-panel .alert-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .career-alert-panel .jobkong-human-check,
  .career-alert-panel .button {
    align-self: end;
  }

  .career-alert-panel .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) and (min-width: 561px) {
  .job-search-card,
  .alert-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-search-actions,
  .alert-form .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
    order: 3;
    flex: 0 0 44px;
  }

  .primary-navigation {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 14px var(--site-gutter) 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .menu {
    display: grid;
    align-items: stretch;
  }

  .header-inner {
    min-height: 72px;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .site-branding {
    min-width: 0;
    flex: 1 1 auto;
  }

  .site-logo-text {
    font-size: 25px;
  }

  .site-logo,
  .site-logo img {
    width: 174px;
  }

  .brand-talisman {
    width: 28px;
    height: 38px;
  }

  .footer-logo-image {
    width: auto;
    max-width: 100%;
  }

  .footer-logo-image img {
    width: min(230px, calc(100vw - 116px));
  }

  .site-logo-text::before {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }

  .language-switcher {
    order: 2;
    flex: 0 0 auto;
    gap: 3px;
    margin-left: 0;
    padding: 3px;
  }

  .language-switcher a {
    min-height: 32px;
    padding: 5px 8px;
  }

  .split-section,
  .job-detail-layout,
  .mobile-entry-panel,
  .student-hero-panel,
  .career-hub-layout,
  .home-platform-layout,
  .blog-preview-layout,
  .home-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }

  .floating-metric-card {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .apply-panel {
    position: static;
  }

  .job-detail-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --site-gutter: 20px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .category-grid,
  .post-grid,
  .job-card-grid,
  .employer-card-grid,
  .info-card-grid,
  .blog-card-grid,
  .student-path-grid,
  .career-card-row,
  .blog-topic-grid,
  .platform-step-grid,
  .rule-list,
  .job-meta-grid {
    grid-template-columns: 1fr;
  }

  .home-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-card-title-row,
  .job-preview-title-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .job-card-salary,
  .job-preview-title-row strong {
    white-space: normal;
  }

  .job-decision-grid {
    grid-template-columns: 1fr;
  }

  .job-card-actions,
  .candidate-dashboard-actions {
    display: grid;
  }

  .job-card-actions .button,
  .candidate-dashboard-actions .button {
    width: 100%;
  }

  .job-stream-preview-actions .button {
    width: 100%;
  }

  .hero-actions,
  .student-hero-actions,
  .job-search-actions,
  .inline-actions,
  .form-actions {
    display: grid;
  }

  .job-search-card,
  .alert-form {
    grid-template-columns: 1fr;
  }

  .student-hero-panel {
    padding: 20px;
  }

  .career-alert-panel {
    padding: 18px;
  }

  .platform-pipeline {
    grid-template-columns: 1fr;
  }

  .platform-pipeline::before {
    display: none;
  }

  .jobkong-floating-contact {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 10px 13px;
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .home-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js-reveal [data-reveal],
  html.js-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .category-grid-enhanced .category-card,
  .content-card,
  .category-grid-enhanced .category-card::after,
  .platform-pipeline::before {
    animation: none;
    transition: none;
  }

  .category-grid-enhanced .category-card:hover,
  .category-grid-enhanced .category-card:focus-within,
  .content-card:hover {
    transform: none;
  }
}
