@font-face {
  font-family: "Sora";
  src: url("/fonts/sora-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a2540;
  --ink-deep: #071b31;
  --brand: #0050b0;
  --brand-2: #0e6bd6;
  --brand-soft: #e8f1fb;
  --green: #409010;
  --green-2: #58a826;
  --green-soft: #edf6e4;
  --paper: #f6f8fa;
  --paper-2: #eef3f7;
  --white: #ffffff;
  --slate: #5b6b7f;
  --slate-light: #93a3b6;
  --line: rgba(10, 37, 64, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 1px 2px rgba(7, 27, 49, 0.06);
  --shadow-md: 0 18px 40px -22px rgba(7, 27, 49, 0.35);
  --font-display: "Sora", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-body: "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
.hero-subtitle,
.stat strong,
.job-salary,
.salary-strong {
  font-family: var(--font-display);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.visually-hidden {
  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: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--brand-2);
  outline-offset: 2px;
}

.eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-head h2 {
  margin-top: 12px;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-lead {
  margin-top: 16px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 24px -14px rgba(0, 80, 176, 0.7);
}

.btn-primary:hover {
  background: var(--brand-2);
  box-shadow: 0 16px 30px -14px rgba(0, 80, 176, 0.85);
}

.btn-primary img {
  filter: brightness(0) invert(1);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-quiet {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn-quiet:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-compact {
  min-height: 44px;
  padding: 0 18px;
}

.btn-block {
  width: 100%;
}

.btn-large {
  min-height: 56px;
  padding: 0 30px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.icon-button img {
  width: 20px;
  height: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
}

.text-link img {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

.text-link:hover img {
  transform: translateX(3px);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.tag-green {
  background: var(--green-soft);
  color: var(--green);
}

.tag-blue {
  background: var(--brand-soft);
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 60px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--slate);
  font-weight: 700;
  font-size: 15px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), var(--green));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.lang-switch:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.admin-link {
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.admin-link:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 27, 49, 0.92) 0%, rgba(7, 27, 49, 0.72) 48%, rgba(10, 37, 64, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 27, 49, 0.25), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 0 190px;
}

.hero-eyebrow {
  color: #8fc4ff;
}

.hero-title {
  margin-top: 18px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.hero-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-search {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin-top: 32px;
}

.hero-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-search-field img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.hero-search-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 15px;
}

.hero-search-field input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.hero-search .btn {
  min-height: 52px;
  flex-shrink: 0;
}

.hero-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 800;
}

.hero-all-link:hover {
  color: var(--white);
}

.bridge-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(7, 27, 49, 0.05), rgba(7, 27, 49, 0.55));
}

.bridge-track {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0 26px;
}

.bridge-end {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  white-space: normal;
  min-width: 0;
}

.bridge-end.is-right {
  flex-direction: row-reverse;
}

.bridge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-2);
  box-shadow: 0 0 0 4px rgba(88, 168, 38, 0.25);
}

.bridge-line {
  position: relative;
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-2), var(--green-2));
}

.bridge-glider {
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  animation: glide 7s ease-in-out infinite;
}

@keyframes glide {
  0%, 100% {
    left: 0;
    transform: translateX(0);
  }
  50% {
    left: calc(100% - 12px);
    transform: translateX(0);
  }
}

.bridge-section {
  background: var(--white);
}

.bridge-cols {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 56px;
  align-items: stretch;
}

.bridge-col {
  padding: 8px 0;
}

.bridge-col-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--brand-soft);
}

.bridge-col-icon img {
  width: 26px;
  height: 26px;
}

.bridge-col h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.bridge-col p {
  color: var(--slate);
  line-height: 1.75;
}

.bridge-flow {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.bridge-rail {
  position: relative;
  background: linear-gradient(180deg, var(--brand), var(--green));
  border-radius: 2px;
}

.bridge-rail span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px var(--green-soft);
}

.featured-section {
  background: var(--paper-2);
}

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

.job-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.job-card-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.job-card-city {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.job-card-city img {
  width: 15px;
  height: 15px;
}

.job-card-title {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.job-card-title a:hover {
  color: var(--brand);
}

.job-card-summary {
  margin-top: 12px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.job-card-meta div {
  min-width: 0;
}

.job-card-meta dt {
  color: var(--slate-light);
  font-size: 12px;
}

.job-card-meta dd {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.job-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.job-salary {
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-step {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--green-soft);
}

.process-icon img {
  width: 26px;
  height: 26px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  background: var(--ink-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.footer-col h3 {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.page-band {
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 84% 20%, rgba(88, 168, 38, 0.22), transparent 32%),
    linear-gradient(120deg, var(--ink-deep), var(--ink) 60%, #0c3b6e);
  color: var(--white);
}

.page-band h1 {
  margin-top: 12px;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0;
}

.page-band .section-lead {
  color: rgba(255, 255, 255, 0.76);
}

.filter-section {
  padding: 40px 0 0;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 240px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-field img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.search-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.select-field {
  flex: 1 1 150px;
}

.select-field select {
  width: 100%;
  height: 44px;
  padding: 0 34px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.jobs-section {
  padding-top: 40px;
}

.jobs-count {
  margin-bottom: 20px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}

.empty-state {
  max-width: 520px;
  margin: 40px auto 0;
  padding: 48px 32px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.empty-state img {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
}

.empty-state h1,
.empty-state h2 {
  font-size: 26px;
}

.empty-state p {
  margin: 12px 0 22px;
  color: var(--slate);
}

.detail-hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 86% 16%, rgba(88, 168, 38, 0.2), transparent 30%),
    linear-gradient(120deg, var(--ink-deep), var(--ink) 62%, #0c3b6e);
  color: var(--white);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.back-link img {
  width: 18px;
  height: 18px;
}

.back-link:hover {
  color: var(--white);
}

.detail-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 36px;
}

.detail-title-row h1 {
  margin-top: 12px;
  max-width: 820px;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: 0;
}

.detail-summary {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.detail-section {
  background: var(--paper);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
}

.detail-meta div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.detail-meta dt {
  color: var(--slate-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-meta dd {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.detail-meta .salary-strong {
  color: var(--green);
}

.detail-block {
  margin-bottom: 36px;
}

.detail-block h2 {
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: 0;
}

.detail-block > p {
  color: var(--slate);
  line-height: 1.75;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.check-list img {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-panel {
  position: sticky;
  top: 96px;
}

.contact-panel-inner {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-panel h2 {
  margin: 10px 0 10px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}

.contact-note {
  margin-bottom: 18px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

.contact-lines {
  margin-top: 18px;
}

.contact-lines span {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.contact-lines small {
  color: var(--slate-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-lines b {
  margin-top: 3px;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.about-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.about-media,
.about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-media img {
  object-fit: cover;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 49, 0.35), rgba(7, 27, 49, 0.86));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 64px;
}

.about-hero-content .eyebrow {
  color: #9fe06a;
}

.about-hero-content h1 {
  margin-top: 12px;
  max-width: 860px;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: 0;
}

.about-hero-content .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.mission-section {
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.mission-grid h2 {
  margin-top: 12px;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

.mission-copy p {
  margin-bottom: 18px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.85;
}

.mission-copy p:first-child {
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.values-section {
  background: var(--paper-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.value-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: 8px;
}

.value-index {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.value-card h3 {
  margin: 10px 0;
  font-size: 22px;
  letter-spacing: 0;
}

.value-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}

.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.not-found .empty-state {
  width: 100%;
  margin: 0;
}

.form-error {
  margin: 8px 0 0;
  color: #b42318;
  font-size: 14px;
  font-weight: 700;
}

.is-hidden {
  display: none !important;
}

.admin-body {
  background: #eaf0f6;
}

.login-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 80% 18%, rgba(88, 168, 38, 0.16), transparent 32%),
    linear-gradient(120deg, #eaf0f6, #f7fafc);
}

.login-brand {
  text-align: center;
}

.login-brand img {
  height: 62px;
  width: auto;
  margin: 0 auto;
}

.login-brand p {
  max-width: 360px;
  margin-top: 12px;
  color: var(--slate);
  font-size: 14px;
}

.login-card {
  width: min(420px, 100%);
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.login-card h1 {
  margin: 8px 0 24px;
  font-size: 28px;
  letter-spacing: 0;
}

.login-card label,
.settings-form label,
.editor-panel label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
}

.login-card input,
.settings-form input,
.settings-form textarea,
.editor-panel input,
.editor-panel textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  outline: 0;
}

.login-card input:focus,
.settings-form input:focus,
.settings-form textarea:focus,
.editor-panel input:focus,
.editor-panel textarea:focus,
.select-field select:focus,
.search-field:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 80, 176, 0.14);
}

.login-card .btn {
  margin-top: 18px;
}

.login-card .back-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  color: var(--slate);
  font-size: 14px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.admin-topbar-inner {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.admin-logo {
  height: 40px;
  width: auto;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 800;
}

.admin-layout {
  display: grid;
  grid-template-columns: 232px 1fr;
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  min-height: calc(100vh - 68px);
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 14px;
  background: var(--ink);
}

.admin-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.admin-tab img {
  width: 18px;
  height: 18px;
}

.admin-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.admin-tab.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.admin-view-site {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.admin-view-site img {
  width: 16px;
  height: 16px;
}

.admin-content {
  padding: 32px 36px 56px;
}

.admin-view-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-view-head h1 {
  margin-top: 6px;
  font-size: 32px;
  letter-spacing: 0;
}

.admin-job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-job-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.admin-job-main {
  min-width: 0;
}

.admin-job-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.admin-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 6px;
  color: var(--slate);
  font-size: 13px;
}

.admin-job-meta .is-draft {
  color: #b45309;
  font-weight: 800;
}

.admin-job-meta .is-live {
  color: var(--green);
  font-weight: 800;
}

.admin-job-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.action-btn:hover {
  border-color: var(--brand);
}

.action-btn img {
  width: 17px;
  height: 17px;
}

.action-btn.is-active {
  background: var(--brand-soft);
  border-color: var(--brand);
}

.settings-form {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.settings-form fieldset,
.editor-panel fieldset {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.settings-form legend,
.editor-panel legend {
  margin-bottom: 16px;
  padding: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

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

.form-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.check-line {
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-line input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.editor-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 27, 49, 0.58);
}

.editor-panel {
  display: flex;
  flex-direction: column;
  width: min(980px, 100%);
  max-height: 92vh;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
}

.editor-head h2 {
  font-size: 22px;
  letter-spacing: 0;
}

.editor-scroll {
  overflow-y: auto;
  padding: 26px;
}

.editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 26px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: var(--paper-2);
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .admin-link {
    display: none;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    overflow-x: auto;
  }

  .admin-tab {
    width: auto;
    white-space: nowrap;
  }

  .admin-view-site {
    margin-top: 0;
    margin-left: auto;
    white-space: nowrap;
  }

  .admin-content {
    padding: 24px 20px 48px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bridge-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bridge-rail {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 68px 0;
  }

  .section-head h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-grid,
  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .page-band {
    padding: 56px 0 48px;
  }

  .page-band h1,
  .about-hero-content h1 {
    font-size: 36px;
  }

  .detail-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .detail-title-row h1 {
    font-size: 34px;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }

  .filter-form {
    align-items: stretch;
  }

  .search-field,
  .select-field {
    flex-basis: 100%;
  }

  .filter-form .btn {
    flex: 1;
  }

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

  .admin-job-actions {
    flex-wrap: wrap;
  }

  .form-grid,
  .form-grid-4 {
    grid-template-columns: 1fr;
  }

  .admin-content {
    padding: 20px 14px 40px;
  }

  .admin-topbar-inner {
    width: calc(100% - 32px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 480px) {
  .shell {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 82vh;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search .btn {
    width: 100%;
  }

  .bridge-track {
    width: calc(100% - 32px);
    gap: 10px;
  }

  .bridge-end {
    font-size: 12px;
  }

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

  .editor-overlay {
    padding: 0;
  }

  .editor-panel {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .editor-scroll {
    padding: 18px;
  }

  .editor-head,
  .editor-actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .login-card {
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
