/* ==========================================================================
   Farway Express 官网样式
   配色体系：slate 深蓝灰 + teal 主色 + amber 强调色
   ========================================================================== */

:root {
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --line: #e2e8f0;
  --line-soft: #eef2f6;
  --surface: #f1f5f9;
  --surface-soft: #f8fafc;
  --white: #ffffff;

  --brand-800: #115e59;
  --brand: #0f766e;
  --brand-500: #14907f;
  --brand-050: #f0fdfa;

  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.14);

  --font-display: "Plus Jakarta Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "DM Sans", "PingFang SC", "Microsoft YaHei", sans-serif;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.13);

  --container: min(1200px, calc(100% - 48px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-700);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 3px;
}

h1,
h2,
h3,
h4,
p,
figure,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

/* 顶部信息条 ------------------------------------------------------------ */
.topbar {
  background: var(--ink-900);
  color: rgba(226, 232, 240, 0.82);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 160ms ease-out;
}

.topbar-contact a:hover {
  color: var(--white);
}

.topbar-contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--accent);
}

.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(226, 232, 240, 0.66);
}

.topbar-tag::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

/* 页头导航 -------------------------------------------------------------- */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-text {
  display: grid;
  gap: 2px;
  padding-left: 13px;
  border-left: 1px solid var(--line);
}

.brand-name {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-sub {
  color: var(--ink-500);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  color: var(--ink-600);
  font-size: 15px;
  font-weight: 500;
  transition: background-color 160ms ease-out, color 160ms ease-out;
}

.main-nav a:hover {
  background: var(--surface);
  color: var(--ink-900);
}

.main-nav a.is-active {
  background: var(--brand-050);
  color: var(--brand-800);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-600);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 160ms ease-out, color 160ms ease-out, background-color 160ms ease-out;
}

.lang-switch:hover {
  border-color: var(--brand);
  background: var(--brand-050);
  color: var(--brand-800);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.6px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink-800);
  transition: transform 180ms ease-out, opacity 140ms ease-out;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-700);
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav a.is-active {
  color: var(--brand-800);
  font-weight: 600;
}

.mobile-nav a:last-of-type {
  border-bottom: 0;
}

.mobile-nav .btn {
  margin: 14px 0 20px;
  width: 100%;
}

/* 按钮 ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: background-color 170ms ease-out, border-color 170ms ease-out, color 170ms ease-out,
    box-shadow 170ms ease-out, transform 170ms ease-out;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--brand-800);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--ink-900);
}

.btn-accent:hover {
  background: #e08c07;
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink-800);
}

.btn-outline:hover {
  border-color: var(--brand);
  background: var(--brand-050);
  color: var(--brand-800);
}

.btn-ghost-light {
  border-color: rgba(226, 232, 240, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn-ghost-light:hover {
  border-color: rgba(226, 232, 240, 0.6);
  background: rgba(255, 255, 255, 0.13);
}

.btn-sm {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 14px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-weight: 600;
  font-size: 15px;
  transition: gap 170ms ease-out, color 170ms ease-out;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

.link-arrow:hover {
  gap: 12px;
  color: var(--brand-800);
}

/* 通用区块 -------------------------------------------------------------- */
.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-surface {
  background: var(--surface);
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  background: var(--ink-900);
  color: rgba(226, 232, 240, 0.78);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  content: "";
}

.eyebrow-light {
  color: var(--accent);
}

.section-head {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
}

.section-head p {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 16px;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  max-width: none;
}

.section-head-row > div {
  max-width: 640px;
}

/* 首屏 ------------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
  color: rgba(226, 232, 240, 0.8);
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: -180px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.42) 0%, rgba(15, 23, 42, 0) 68%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 82%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 82%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
  padding: 84px 0 92px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #fcd34d;
  font-size: 13px;
  font-weight: 600;
}

.hero-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero h1 {
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.hero h1 em {
  color: #5eead4;
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(203, 213, 225, 0.9);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(203, 213, 225, 0.86);
  font-size: 14px;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: #5eead4;
}

/* 首屏航线卡片 */
.hero-card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(30, 41, 59, 0.72);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.6);
  color: rgba(203, 213, 225, 0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-head span:last-child {
  color: #5eead4;
}

.hero-routes {
  padding: 8px 22px 20px;
}

.hero-route {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-route:last-child {
  border-bottom: 0;
}

.hero-route-path {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}

.hero-route-path svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--accent);
}

.hero-route-note {
  margin-top: 4px;
  color: rgba(148, 163, 184, 0.92);
  font-size: 13px;
}

.hero-route-tag {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.26);
  color: #5eead4;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* 数据条 ---------------------------------------------------------------- */
.stats-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stat {
  padding: 30px 26px;
  background: var(--white);
  text-align: center;
}

.stat-value {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-value span {
  color: var(--brand);
  font-size: 20px;
}

.stat-label {
  margin-top: 7px;
  color: var(--ink-500);
  font-size: 14px;
}

/* 卡片网格 -------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

a.card:hover,
.card-hover:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--brand-050);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
}

.card-icon-accent {
  background: var(--accent-soft);
}

.card-icon-accent svg {
  stroke: #b45309;
}

.card h3 {
  font-size: 19px;
}

.card p {
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 15px;
}

.card .link-arrow {
  margin-top: 18px;
  font-size: 14px;
}

.card-list {
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.card-list li {
  display: flex;
  gap: 9px;
  color: var(--ink-600);
  font-size: 14.5px;
  line-height: 1.6;
}

.card-list svg {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex-shrink: 0;
  stroke: var(--brand);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink-600);
  font-size: 13px;
}

.tag-brand {
  border-color: rgba(15, 118, 110, 0.24);
  background: var(--brand-050);
  color: var(--brand-800);
  font-weight: 600;
}

/* 船东合作条 ------------------------------------------------------------ */
.carriers {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.carriers-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.carriers-label {
  flex-shrink: 0;
  max-width: 190px;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.5;
}

.carriers-list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 26px;
}

.carriers-list li {
  color: var(--ink-400);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 180ms ease-out;
}

.carriers-list li:hover {
  color: var(--ink-700);
}

/* 图文分栏 -------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.split-narrow {
  gap: 48px;
}

.split p + p {
  margin-top: 14px;
}

.split-media {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #ffffff 0%, var(--surface) 100%);
}

.checklist {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.checklist li {
  display: flex;
  gap: 12px;
}

.checklist svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  stroke: var(--brand);
}

.checklist b {
  display: block;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 16px;
}

.checklist p {
  color: var(--ink-500);
  font-size: 14.5px;
}

/* 航线数据表 ------------------------------------------------------------ */
.route-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.route-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line-soft);
}

.route-row:last-child {
  border-bottom: 0;
}

.route-row:nth-child(odd) {
  background: var(--surface-soft);
}

.route-key {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-500);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-key::before {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brand);
  content: "";
}

.route-value {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.65;
}

/* 时间线 ---------------------------------------------------------------- */
.timeline {
  display: grid;
  gap: 0;
  margin-top: 10px;
  border-left: 2px solid var(--line);
  padding-left: 30px;
}

.timeline li {
  position: relative;
  padding-bottom: 30px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  position: absolute;
  top: 5px;
  left: -37px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 2px var(--brand);
  content: "";
}

.timeline-year {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.timeline h3 {
  margin-top: 4px;
  font-size: 18px;
}

.timeline p {
  margin-top: 6px;
  color: var(--ink-500);
  font-size: 15px;
}

/* 页面标题区 ------------------------------------------------------------ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0 66px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-900);
  color: rgba(203, 213, 225, 0.86);
}

.page-hero::before {
  position: absolute;
  top: -220px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.36) 0%, rgba(15, 23, 42, 0) 70%);
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 44px);
}

.page-hero p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(148, 163, 184, 0.9);
  font-size: 13.5px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span[aria-hidden="true"] {
  color: rgba(148, 163, 184, 0.55);
}

.breadcrumb .current {
  color: #5eead4;
}

/* 新闻 / 招聘列表 ------------------------------------------------------- */
.post-list {
  display: grid;
  gap: 16px;
}

.post {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.post:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.post-job {
  grid-template-columns: 92px 1fr auto;
  align-items: start;
}

.post-date {
  display: grid;
  gap: 3px;
}

.post-date time {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.post-badge {
  display: inline-flex;
  align-items: center;
  align-self: start;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--brand-050);
  color: var(--brand-800);
  font-size: 12px;
  font-weight: 600;
}

.post-badge-accent {
  background: var(--accent-soft);
  color: #b45309;
}

.post h3 {
  font-size: 18px;
}

.post p {
  margin-top: 7px;
  color: var(--ink-500);
  font-size: 15px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
  color: var(--ink-500);
  font-size: 14px;
}

.job-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.job-meta svg {
  width: 15px;
  height: 15px;
  stroke: var(--ink-400);
}

.empty-state {
  padding: 46px 30px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  color: var(--ink-500);
  text-align: center;
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

/* 联系页 ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-item .card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}

.info-label {
  color: var(--ink-500);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-value {
  margin-top: 2px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  word-break: break-word;
}

a.info-value:hover {
  color: var(--brand);
}

.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: span 2;
}

.field label {
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-800);
  font-size: 15px;
  transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-400);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.13);
}

.form-note {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 13.5px;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--brand-800);
  font-size: 14px;
  font-weight: 600;
}

.map-embed {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--surface-soft), var(--surface));
  color: var(--ink-500);
  text-align: center;
}

/* CTA 区块 -------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 66px 0;
  background: var(--brand);
  color: rgba(240, 253, 250, 0.9);
}

.cta::before {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 34px);
}

.cta p {
  max-width: 560px;
  margin-top: 12px;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.cta .btn-accent:hover {
  background: #fbbf24;
}

/* 页脚 ------------------------------------------------------------------ */
.site-footer {
  background: var(--ink-900);
  color: rgba(148, 163, 184, 0.9);
  font-size: 14.5px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding: 62px 0 52px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-sub {
  color: rgba(148, 163, 184, 0.8);
}

.footer-brand .brand-text {
  border-left-color: rgba(148, 163, 184, 0.3);
}

.footer-brand img {
  padding: 4px 6px;
  border-radius: 6px;
  background: var(--white);
  mix-blend-mode: normal;
}

.footer-desc {
  max-width: 340px;
  margin-top: 18px;
  line-height: 1.8;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  transition: color 160ms ease-out;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links svg {
  width: 13px;
  height: 13px;
  stroke: rgba(148, 163, 184, 0.7);
}

.footer-hint {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px dashed rgba(148, 163, 184, 0.28);
  color: rgba(148, 163, 184, 0.6);
  font-size: 12.5px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  color: rgba(148, 163, 184, 0.66);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* 响应式 ---------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 60px 0 68px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: calc(100% - 40px);
  }

  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .grid-3,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 36px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carriers-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .carriers-label {
    max-width: none;
  }

  .carriers-list {
    justify-content: flex-start;
    gap: 12px 22px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .post {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .post-date {
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 32px);
  }

  body {
    font-size: 15.5px;
  }

  .topbar-inner {
    justify-content: center;
    gap: 16px;
    padding: 8px 0;
  }

  .topbar-contact {
    gap: 16px;
    font-size: 12.5px;
  }

  .topbar-tag {
    display: none;
  }

  .brand img {
    height: 38px;
  }

  .brand-text {
    padding-left: 10px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }

  .hero-inner {
    padding: 46px 0 54px;
  }

  .hero-points {
    gap: 10px 20px;
  }

  .hero-card-head,
  .hero-routes {
    padding-inline: 18px;
  }

  .grid-2,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 22px 14px;
  }

  .stat-value {
    font-size: 27px;
  }

  .stat-label {
    font-size: 13px;
  }

  .card,
  .form-card,
  .post {
    padding: 22px;
  }

  .route-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 0 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* 语言切换：默认展示中文 ------------------------------------------------
   放在文件末尾并带 body 前缀，避免被组件内的后代选择器（如 .job-meta > span）
   在特异性相同时反向覆盖，导致中英文同时显示。 */
body .lang-en {
  display: none;
}

body.is-en .lang-zh {
  display: none;
}

body.is-en .lang-en {
  display: inline;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
