/* ============================================================
   来云顶班®城市合伙人 — Apple-Inspired Design System
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
  --text-secondary: #5f5f66;
  /* ⚠️ 浅色底版（2026-09-21）— token 语义反转：原名 --bg-dark/--text-l 保留以兼容既有引用，
     值已改为浅底/深字。新增 --*-ink（可读档强调色）与 --bg-d。
     ⚠️ 原名与值不再对应，勿按名字猜色，一切以本块为准。 */
  --bg-dark: #fafaf8;      /* 原 #000000 — 页面主底（浅） */
  --bg-darker: #ffffff;    /* 原 #0a0a0a — 交替区块底（更浅） */
  --bg-d: #fafaf8;         /* 新增：正文块底（兼容 var(--bg-d,…) 回退） */
  --bg-light: #f2f2f4;     /* 原 #f5f5f7 — 浅色区块底（拉开层次） */
  --white: #ffffff;
  --text-d: #1d1d1f;       /* 深字（未变） */
  --text-m: #5f5f66;       /* 原 #5b5b63 — 次级字，浅底上提高对比 */
  --text-l: #1d1d1f;       /* 原 #f5f5f7 — 正文色（浅底上改为深字） */
  --teal: #0a5750;         /* 原 #2dd4bf — 降明度以在浅底可读（13px 小字需 ≥4.5:1，实测 3.58→达标） */
  --blue: #0855a3;         /* 原 #2997ff */
  --green: #0b6326;        /* 原 #30d158 */
  --orange: #8a4f00;       /* 原 #ff9f0a */
  --red: #a01c15;          /* 原 #ff453a */
  --purple: #8a2be2;       /* 原 #bf5af2 */
  --nav-h: 52px;
  --section-pad: 100px 0;
  --section-pad-m: 64px 0;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg-dark); color: var(--text-l);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
table { width: 100%; border-collapse: collapse; }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,250,248,.86); backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.09);
}
.nav-inner {
  max-width: 1024px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.nav-logo img { height: 30px; width: auto; border-radius: 6px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-size: 12px; color: var(--text-m); transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-l); }
.nav-toggle { display: none; background: none; border: none; color: var(--text-l); font-size: 22px; cursor: pointer; }
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(250,250,248,.97); border-bottom: 1px solid rgba(0,0,0,.09);
    padding-bottom: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 22px; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,.045);
    color: var(--text-m);
  }
  .nav-links a:hover, .nav-links a.active { color: var(--teal); background: none; }
  .nav-inner { padding: 0 16px; }
  .nav-logo img { height: 28px; }
  .hero { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .hero-title { font-size: clamp(28px, 7vw, 48px); }
  .hero-stats { gap: 20px; margin-top: 32px; }
  .hero-stat .val { font-size: 28px; }
  .section { padding: var(--section-pad-m); }
  .section--dark, .section--darker { padding: var(--section-pad-m); }
  .section-title { font-size: 22px; line-height: 1.2; }
  .section-sub { font-size: 14px; line-height: 1.65; }
  .container { padding: 0 16px; }
  .card { padding: 20px 16px; }
  .card h3 { font-size: 16px; }
  .card p { font-size: 13px; }
  .table-wrap { border-radius: 12px; }
  th, td { padding: 10px 12px; font-size: 12px; }
  .footer { padding: 40px 16px 24px; }
  .footer-top { gap: 28px; }
  .footer-col { min-width: 0; }
  .footer-col a { font-size: 13px; padding: 4px 0; }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 60px) 22px 80px;
}
.hero-content { max-width: 780px; }
.hero-eyebrow {
  font-size: 14px; font-weight: 500; color: var(--text-m);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(36px, 7vw, 72px); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 20px;
}
.hero-title--gradient {
  background: linear-gradient(135deg, var(--text-l) 0%, var(--teal) 50%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 21px); color: var(--text-m);
  max-width: 560px; line-height: 1.5;
}
.hero-stats {
  display: flex; justify-content: center; gap: clamp(24px, 5vw, 56px);
  margin-top: 48px; flex-wrap: wrap;
}
.hero-stat .val {
  font-size: clamp(32px, 5vw, 56px); font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat .label { font-size: 13px; color: var(--text-m); margin-top: 4px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: var(--section-pad); }
@media (max-width: 768px) { .section { padding: var(--section-pad-m); } }
.section--dark { background: var(--bg-dark); color: var(--text-l); }
.section--darker { background: var(--bg-darker); color: var(--text-l); }
.section--light { background: var(--bg-light); color: var(--text-d); }
.container { max-width: 1024px; margin: 0 auto; padding: 0 22px; }
.text-center { text-align: center; }

.section-eyebrow {
  font-size: 13px; font-weight: 600; color: var(--teal);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px;
}
.section--light .section-eyebrow { color: var(--blue); }
.section-title {
  font-size: clamp(28px, 5vw, 48px); font-weight: 700;
  line-height: 1.12; letter-spacing: -0.02em;
}
.section-sub {
  font-size: clamp(15px, 2vw, 19px); color: var(--text-m);
  max-width: 620px; margin-top: 12px; line-height: 1.5;
}
.section--light .section-sub { color: #5f5f66; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: 980px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: all .3s ease; border: none;
}
.btn--teal { background: var(--teal); color: #000; }
.btn--teal:hover { background: #0f766e; color: #000; }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: #0a5bb8; color: var(--white); }
.btn--outline { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--arrow::after { content: "→"; margin-left: 4px; transition: transform .2s; }
.btn--arrow:hover::after { transform: translateX(4px); }

/* ===== Cards ===== */
.card-grid {
  display: grid; gap: 16px; margin-top: 32px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  padding: 28px 24px; border-radius: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); }
.card--glass {
  background: rgba(0,0,0,.045);
  border: 1px solid rgba(0,0,0,.09);
  backdrop-filter: blur(12px);
}
.card--glass:hover { box-shadow: 0 12px 40px rgba(0,0,0,.10); border-color: rgba(0,0,0,.16); }
.card--light {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.card--light:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.card--light h3 { color: var(--text-d); }
.card--light p { color: #5f5f66; }

.card h3 { font-size: 18px; font-weight: 600; margin-top: 12px; }
.card p { font-size: 14px; color: var(--text-m); margin-top: 8px; line-height: 1.5; }

.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.card-icon--teal { background: rgba(13,148,136,.12); color: var(--teal); }
.card-icon--blue { background: rgba(11,111,212,.12); color: var(--blue); }
.card-icon--green { background: rgba(26,143,60,.12); color: var(--green); }
.card-icon--orange { background: rgba(178,106,0,.12); color: var(--orange); }
.card-icon--red { background: rgba(207,46,36,.12); color: var(--red); }
.card-icon--purple { background: rgba(138,43,226,.12); color: var(--purple); }

/* ===== Tags ===== */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 980px;
  font-size: 12px; font-weight: 600;
}
.tag--teal { background: rgba(13,148,136,.12); color: var(--teal); }
.tag--blue { background: rgba(11,111,212,.12); color: var(--blue); }
.tag--orange { background: rgba(178,106,0,.12); color: var(--orange); }
.tag--green { background: rgba(26,143,60,.12); color: var(--green); }
.tag--red { background: rgba(207,46,36,.12); color: var(--red); }

/* ===== Tables ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; }
.section--dark .table-wrap,
.section--darker .table-wrap { background: rgba(0,0,0,.035); }
.section--light .table-wrap { background: var(--white); border: 1px solid rgba(0,0,0,.06); }

table { min-width: 500px; }
th, td { padding: 12px 16px; text-align: left; font-size: 13px; }
th {
  font-weight: 600; font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em;
}
.section--dark th, .section--darker th { color: var(--text-m); border-bottom: 1px solid rgba(0,0,0,.09); }
.section--dark td, .section--darker td { border-bottom: 1px solid rgba(0,0,0,.045); color: var(--text-l); }
.section--light th { color: #5f5f66; border-bottom: 1px solid rgba(0,0,0,.08); }
.section--light td { color: var(--text-d); border-bottom: 1px solid rgba(0,0,0,.04); }

/* ===== Charts ===== */
.chart-box { width: 100%; height: 360px; margin-top: 24px; }
.chart-box--map { height: 500px; }
@media (max-width: 768px) {
  .chart-box { height: 280px; }
  .chart-box--map { height: 360px; }
}

/* ===== Steps ===== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px;
}
@media (max-width: 768px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 24px 16px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #000;
}
.section--light .step h4 { color: var(--text-d); }
.section--light .step p { color: #5f5f66; }
.step h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-m); }

/* ===== Timeline ===== */
.timeline { margin-top: 48px; position: relative; padding-left: 32px; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--teal), var(--blue));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute; left: -32px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal); border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--teal);
}
.section--light .timeline-dot { border-color: var(--bg-light); }
.timeline-phase { font-size: 13px; color: var(--teal); font-weight: 600; letter-spacing: .04em; }
.timeline-title { font-size: 20px; font-weight: 600; margin-top: 4px; }
.section--light .timeline-title { color: var(--text-d); }
.timeline-list { margin-top: 12px; }
.timeline-list li {
  font-size: 14px; color: var(--text-m); padding: 4px 0;
  padding-left: 16px; position: relative;
}
.timeline-list li::before { content: "→"; position: absolute; left: 0; color: var(--teal); }

/* ===== Search & Filters ===== */
.search-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 24px;
}
.search-input {
  padding: 10px 18px; border-radius: 980px; font-size: 14px;
  border: 1px solid rgba(0,0,0,.13); background: rgba(0,0,0,.07);
  color: var(--text-l); outline: none; min-width: 200px;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--teal); }
.filter-btn {
  padding: 6px 16px; border-radius: 980px; font-size: 12px; font-weight: 600;
  border: 1px solid rgba(0,0,0,.13); background: transparent;
  color: var(--text-m); cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); color: #000; border-color: var(--teal); }
.page-indicator { font-size: 13px; color: var(--text-m); margin-left: auto; }

/* ===== Swiper KPI Cards ===== */
.swiper { margin-top: 24px; overflow: hidden; padding-bottom: 40px; }
.swiper-slide {
  background: rgba(0,0,0,.035);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 20px; padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.city-name { font-size: 18px; font-weight: 700; color: var(--teal); }
.city-meta { font-size: 12px; color: var(--text-m); }
.kpi-chart { width: 100%; height: 180px; margin-top: 8px; }
.swiper-pagination-bullet { background: var(--text-m); opacity: .4; }
.swiper-pagination-bullet-active { background: var(--teal); opacity: 1; }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(13,148,136,.08), rgba(11,111,212,.08));
  border: 1px solid rgba(13,148,136,.15);
  border-radius: 28px; padding: 56px 32px; text-align: center;
}
.cta-banner h2 { font-size: clamp(22px, 4vw, 32px); font-weight: 700; }
.cta-banner p { font-size: 16px; color: var(--text-m); margin: 12px 0 28px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.07);
  cursor: pointer; transition: background .2s;
}
.section--light .faq-item { border-color: rgba(0,0,0,.06); }
.faq-item:hover { background: rgba(0,0,0,.03); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 16px; font-weight: 600; gap: 16px;
}
.faq-q .icon { font-size: 20px; color: var(--text-m); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease;
  font-size: 15px; color: var(--text-m); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-darker); padding: 40px 22px 24px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.footer-inner { max-width: 1024px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; color: var(--text-m); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-m); padding: 3px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text-l); }
.footer-bottom {
  margin-top: 32px; padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.07);
  font-size: 12px; color: rgba(0,0,0,.64);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(0,0,0,.64); font-size: 12px; }

/* ===== Animations ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.scale-in { opacity: 0; transform: scale(.96); transition: opacity .7s ease, transform .7s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ===== Hero Background Image ===== */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: center center / cover no-repeat;
  opacity: .35;              /* 浅色底：照片降为背景纹理，不再压暗页面 */
  filter: grayscale(.25);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,250,248,.80) 0%, rgba(250,250,248,.96) 100%);  /* 原 rgba(0,0,0,.55→.75) 黑遮罩 */
}
.hero { position: relative; }
.hero .hero-content { position: relative; z-index: 1; }

/* ===== Section Hero Image (full-width banner) ===== */
.section-img {
  position: relative; border-radius: 20px; overflow: hidden;
  margin-top: 40px; height: 280px;
}
.section-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.section-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,250,248,.08) 0%, rgba(250,250,248,.94) 100%);  /* 原 rgba(0,0,0,.15→.6) */
  display: flex; align-items: flex-end; padding: 28px 32px;
}
.section-img .overlay h3 {
  font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: #1d1d1f;  /* 原 #fff（深底反白字） */
}
.section-img .overlay p {
  font-size: 15px; color: rgba(0,0,0,.72); margin-top: 6px;
}
@media (max-width: 768px) {
  .section-img { height: 180px; border-radius: 14px; }
  .section-img .overlay { padding: 18px 20px; }
}

/* ===== Card Image (inside glass cards) ===== */
.card-img {
  width: 100%; height: 160px; border-radius: 12px; overflow: hidden;
  margin-bottom: 14px;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
@media (max-width: 768px) {
  .card-img { height: 140px; }
}

/* ===== Step Image ===== */
.step-img {
  width: 100%; height: 140px; border-radius: 14px; overflow: hidden;
  margin-bottom: 14px;
}
.step-img img {
  width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 768px) {
  .step-img { height: 120px; }
}

/* ===== Full-width Feature Image ===== */
.feature-img {
  position: relative; border-radius: 24px; overflow: hidden;
  margin-top: 48px; height: 320px;
}
.feature-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.feature-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,250,248,.05) 30%, rgba(250,250,248,.95) 100%);  /* 原 transparent→rgba(0,0,0,.7) */
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
}
.feature-img h3 {
  font-size: clamp(22px, 3vw, 36px); font-weight: 700; color: #1d1d1f;  /* 原 #fff（深底反白字） */
}
.feature-img p {
  font-size: 16px; color: rgba(0,0,0,.72); margin-top: 8px; max-width: 480px;
}
@media (max-width: 768px) {
  .feature-img { height: 220px; border-radius: 16px; }
  .feature-img .overlay { padding: 24px; }
}

/* ===== Utilities ===== */
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

/* ===== 横向滑动卡片容器 ===== */
.swipe-container {
  margin-top: 32px;
  position: relative;
}

.swipe-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--text-m);
  margin-bottom: 12px;
  animation: swipe-hint-pulse 2s ease-in-out infinite;
}

@keyframes swipe-hint-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.swipe-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 16px;
}

.swipe-wrapper::-webkit-scrollbar {
  display: none;
}

.swipe-item {
  flex: 0 0 calc(80% - 8px);
  scroll-snap-align: start;
  min-width: 260px;
}

.swipe-item:nth-child(2n) {
  flex: 0 0 calc(75% - 8px);
}

.swipe-item:nth-child(3n) {
  flex: 0 0 calc(70% - 8px);
}

@media (max-width: 768px) {
  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .swipe-hint::before {
    content: "←";
    animation: swipe-arrow 1.5s ease-in-out infinite;
  }
  .swipe-hint::after {
    content: "→";
    animation: swipe-arrow 1.5s ease-in-out infinite reverse;
  }
  @keyframes swipe-arrow {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
  }
}


/* ============================================================
   浅色底 · 填充块文字对比补偿（2026-09-21）
   强调色降明度后，填充块上的原 #000 文字改为 #fff
   ============================================================ */
.btn--teal { color: #fff; }
.btn--teal:hover { color: #fff; }
.step-num { color: #fff; }
.filter-btn.active { color: #fff; }
.timeline-dot { border-color: var(--bg-dark); }


/* ============================================================
   填充块文字对比补偿（2026-09-21 终版）
   原 style.css 用「亮青底 + 黑字」，浅色改造后强调色已压深，
   填充块上的文字必须改为白色才可读；同时去掉 hover 的亮色回弹。
   ============================================================ */
.btn--teal, .btn--teal:visited, .btn--teal:hover { color: #fff !important; }
.btn--teal:hover { background: var(--teal) !important; }
.btn--primary:hover { background: var(--blue) !important; }
.btn--green, .btn--green:hover, .btn--orange, .btn--orange:hover,
.btn--red, .btn--red:hover { color: #fff !important; }
.step-num, .filter-btn.active { color: #fff !important; }

/* ============================================================
   ⑨ 浏览器实测低对比收口（2026-09-21）
   依据 temp/locate_lc_out/lc.json —— 定点覆盖 style.css 的深底时代字色。
   ============================================================ */
.section--sandtable .section-eyebrow { color: #8a6d3f !important; }
.chart-box--map .map-label strong    { color: #8a6d3f !important; }
.chart-box--map .map-label span      { color: #5b6b7d !important; }
.map-frame .mf-coords                { color: rgba(0,0,0,.55) !important; }

/* ============================================================
   ⑩ hero 数字（原深底渐变文字，2026-09-21 实测修正）
   问题：.hero-stat .val 原为「渐变背景 + background-clip:text + 透明填充」，
        浅色层把 text-fill-color 改成不透明深墨后，渐变底仍被裁在文字内；
        其子元素 span「/天*」继承不到裁剪、且自带 --text-m 灰字，
        结果 = 深青渐变底 + 中灰字 → 实测 1.33:1 不可读。
   处置：彻底去掉 .val 的渐变背景（纯深墨字），span 单独给中灰 —— 干净且无隐患。
   ============================================================ */
.hero-content .hero-stat .val {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #1d1d1f !important;
  -webkit-text-fill-color: #1d1d1f !important;
}
.hero-content .hero-stat .val span {
  color: #5f5f66 !important;
  -webkit-text-fill-color: #5f5f66 !important;
}

/* ============================================================
   ⑪ 填充块白字补偿（2026-09-21 终版 · 与 station 对齐）
   原 style.css 是「亮青底 + 黑字」的深底时代配色；强调色压深后，
   填充块上的文字必须改白才可读。此前 station 有、CityPartner 漏了。
   ============================================================ */
.btn--teal, .btn--teal:visited, .btn--teal:hover { color: #fff !important; }
.btn--teal:hover { background: var(--teal) !important; }
.btn--primary, .btn--primary:visited, .btn--primary:hover { color: #fff !important; }
.btn--outline:hover { color: #fff !important; }
.step-num { color: #fff !important; }
.filter-btn.active { color: #fff !important; }


/* ============================================================
   ⑫ 桌面端横向滑动可用性修复（2026-09-21）
   问题（线上实测）：>768px 时 .swipe-hint 被 display:none；
        且 .swipe-wrapper 的滚动条被 scrollbar-width:none +
        ::-webkit-scrollbar{display:none} 一并隐藏；
        纯 CSS 实现下鼠标既拖不动、滚轮也不转横向
        → 桌面用户看到卡片被切断，却没有任何办法「左右滑动」。
   处置：① 桌面端恢复可见滚动条与「左右滑动」提示；
        ② 卡片由 70%~80% 百分比宽度改为定宽 320px，一屏可见 2–3 张；
        ③ 拖拽 / 滚轮 / 键盘交互由 shared.js 末尾补齐。
   ⚠️ 触摸端（≤768px）行为不变，仍是原生手势。
   ============================================================ */
@media (min-width: 769px) {
  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .swipe-hint::before { content: "←"; }
  .swipe-hint::after  { content: "→"; }
  .swipe-wrapper {
    scrollbar-width: thin;                                  /* Chrome 121+ / Firefox */
    scrollbar-color: rgba(0,0,0,.28) rgba(0,0,0,.06);
    padding-bottom: 20px;
  }
  .swipe-wrapper::-webkit-scrollbar { display: block; height: 8px; }  /* Safari 回退 */
  .swipe-wrapper::-webkit-scrollbar-track {
    background: rgba(0,0,0,.06);
    border-radius: 4px;
  }
  .swipe-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.28);
    border-radius: 4px;
  }
  .swipe-wrapper::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,.45); }
  .swipe-item,
  .swipe-item:nth-child(2n),
  .swipe-item:nth-child(3n) { flex: 0 0 320px; }
}

/* 拖拽态（由 shared.js 切换 class） */
.swipe-wrapper.is-draggable { cursor: grab; }
.swipe-wrapper.is-dragging  { cursor: grabbing; scroll-snap-type: none; }
