:root {
  --bg: #f7fbfa;
  --surface: #ffffff;
  --surface-soft: #eef9f7;
  --text: #14242f;
  --muted: #637582;
  --line: #d9ebe8;
  --accent: #18b7a6;
  --accent-dark: #08796f;
  --gold: #b88218;
  --shadow: 0 20px 60px rgba(15, 86, 76, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(24, 183, 166, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfefe 0%, var(--bg) 100%);
  line-height: 1.7;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 235, 232, 0.84);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #8de4db);
  box-shadow: 0 12px 28px rgba(24, 183, 166, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.nav-links a:hover,
.footer-links a:hover,
.contact-card a:hover {
  color: var(--accent-dark);
}

.hero {
  padding: 86px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 20px 0 12px;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.3;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.35;
}

.lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #21c8ba);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(24, 183, 166, 0.24);
}

.button-muted {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel,
.card,
.article,
.cta-panel,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  border-radius: 24px;
  padding: 24px;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(24, 183, 166, 0.11);
}

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

.metric-grid div {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fcfb 100%);
}

.metric-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.metric-grid span,
.card p,
.section-heading p,
.split p,
.cta-panel p,
.article p,
.article li {
  color: var(--muted);
}

.section {
  padding: 48px 0;
}

.section-soft {
  background: rgba(238, 249, 247, 0.5);
  border-top: 1px solid rgba(217, 235, 232, 0.7);
  border-bottom: 1px solid rgba(217, 235, 232, 0.7);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading .eyebrow,
.split .eyebrow,
.cta-panel .eyebrow,
.article .eyebrow {
  margin-bottom: 14px;
}

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

.card {
  min-height: 210px;
  border-radius: 20px;
  padding: 22px;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--accent-dark);
  background: var(--surface-soft);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 14px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 24px;
  padding: 28px;
}

.cta-panel p {
  margin: 0;
}

.page {
  padding: 54px 0 78px;
}

.article {
  border-radius: 24px;
  padding: clamp(24px, 5vw, 40px);
}

.article h1 {
  margin-top: 0;
  font-size: clamp(34px, 6vw, 54px);
}

.article h2 {
  margin-top: 34px;
  font-size: 24px;
}

.article ul {
  padding-left: 22px;
}

.notice {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  color: #176f67;
  border: 1px solid #c8efea;
}

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

.contact-card {
  border-radius: 18px;
  padding: 18px;
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.contact-card strong,
.contact-card a {
  font-size: 17px;
  font-weight: 800;
}

.site-footer {
  margin-top: 36px;
  padding: 30px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(260px, auto);
  align-items: center;
  gap: 18px;
}

.footer-row strong,
.footer-row span {
  display: block;
}

.footer-links,
.beian {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.beian {
  justify-content: flex-end;
}

.police-record {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.police-icon {
  width: 14px;
  height: 16px;
  border-radius: 4px 4px 6px 6px;
  border: 1px solid #9fb5b1;
  background: linear-gradient(180deg, #ffffff, #eaf5f3);
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 58px 0 38px;
  }

  .hero-panel {
    max-width: 620px;
  }

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

  .cta-panel {
    align-items: flex-start;
    display: grid;
  }

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

  .beian {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav-links {
    gap: 12px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metric-grid,
  .cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
  }

  .article {
    border-radius: 18px;
  }
}
