:root {
  --ink: #101820;
  --muted: #5e6b75;
  --line: #dce5ec;
  --white: #ffffff;
  --blue: #0b5f8a;
  --teal: #12a594;
  --sand: #f2dfbd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 165, 148, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(11, 95, 138, 0.18), transparent 26rem),
    linear-gradient(135deg, #eef7fa 0%, #fbf7ef 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

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

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 24px rgba(11, 95, 138, 0.18);
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

main {
  padding: 48px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(11, 95, 138, 0.18);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-title {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 58px);
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(16, 24, 32, 0.16);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: none;
}

.panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 28px 70px rgba(39, 67, 88, 0.16);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(242, 223, 189, 0.9);
}

.metric-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 30px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section,
.content-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.card,
.content-card {
  padding: 26px;
  border: 1px solid rgba(220, 229, 236, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 42px rgba(39, 67, 88, 0.08);
}

.card {
  min-height: 210px;
}

.card h2,
.content-card h2 {
  margin: 0 0 12px;
  font-size: 21px;
}

.card p,
.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.8;
}

.content-card p {
  margin: 0 0 14px;
}

.content-card ul {
  margin: 0;
  padding-left: 20px;
}

.status-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b6d3b;
  font-weight: 700;
}

.pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #21b66f;
  box-shadow: 0 0 0 6px rgba(33, 182, 111, 0.12);
}

footer {
  padding: 32px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

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

@media (max-width: 820px) {
  header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .section,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

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