:root {
  --bg: #f5f7fb;
  --text: #111827;
  --muted: #667085;
  --line: #e6eaf0;
  --card: #ffffff;
  --primary: #245bff;
  --primary2: #00a6ff;
  --dark: #0f172a;
  --soft: #eef4ff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230,234,240,.82);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 14px 30px rgba(36,91,255,.24);
}

.brand strong { display: block; font-size: 17px; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344054;
  font-size: 14px;
}

.nav a:hover { color: var(--primary); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 15% 10%, rgba(36,91,255,.18), transparent 32rem),
    radial-gradient(circle at 90% 25%, rgba(0,166,255,.16), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% -10%;
  height: 320px;
  background: linear-gradient(90deg, transparent, rgba(36,91,255,.06), transparent);
  transform: rotate(-5deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #174bd1;
  background: rgba(36,91,255,.08);
  border: 1px solid rgba(36,91,255,.16);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 30px 0 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #174bd1);
  box-shadow: 0 16px 32px rgba(36,91,255,.22);
}

.btn.ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: #344054;
}

.safe-note {
  font-size: 14px !important;
  color: #9a3412 !important;
}

.hero-panel {
  border-radius: 30px;
  background: #111827;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(15,23,42,.22);
}

.panel-head {
  display: flex;
  gap: 8px;
  padding: 8px 8px 14px;
}

.panel-head span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
}

.dashboard-card {
  border-radius: 22px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.04)),
    #172033;
  color: #fff;
  min-height: 380px;
}

.dash-title {
  color: rgba(255,255,255,.72);
  margin-bottom: 24px;
}

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

.metric-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

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

.metric-grid small { color: rgba(255,255,255,.62); }

.bars { margin-top: 30px; display: grid; gap: 12px; }
.bars i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #75a7ff, #22d3ee);
}

.section { padding: 76px 0; }
.section.soft { background: #fff; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

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

.section-kicker {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.04em;
}

.section-head p,
.about-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 45px rgba(15,23,42,.06);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

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

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  white-space: nowrap;
  font-weight: 700;
  font-size: 13px;
}

.resource-table {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 45px rgba(15,23,42,.06);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr 1.7fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  color: #344054;
  line-height: 1.55;
}

.table-row:last-child { border-bottom: 0; }
.table-head {
  background: #f8fafc;
  color: #667085;
  font-weight: 800;
  font-size: 14px;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 8px;
}
.dot.green { background: #12b76a; }
.dot.blue { background: #2e90fa; }
.dot.orange { background: #f79009; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  min-height: 210px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

.step p {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-list article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.news-list time {
  color: var(--primary);
  font-weight: 800;
}

.news-list h3 { margin-bottom: 8px; }
.news-list p { margin-bottom: 0; color: var(--muted); line-height: 1.65; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 34px;
  align-items: start;
}

.record-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 45px rgba(15,23,42,.06);
}

.record-card h3 { margin-bottom: 18px; }
.record-card dl { margin: 0; display: grid; gap: 12px; }
.record-card dt { color: var(--muted); font-size: 13px; }
.record-card dd {
  margin: -8px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  font-weight: 700;
  word-break: break-all;
}
.record-card dd:last-child { border-bottom: 0; padding-bottom: 0; }

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.74);
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong { color: #fff; }
.site-footer p { margin: 8px 0 0; }
.site-footer a { color: #fff; font-weight: 800; }
.site-footer span { display: block; margin-top: 6px; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hero-grid,
  .about-grid { grid-template-columns: 1fr; }
  .cards.three,
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .table-row { grid-template-columns: 1fr; gap: 6px; }
  .table-head { display: none; }
  .news-list article { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 56px 0 46px; }
  .cards.three,
  .timeline,
  .metric-grid { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .section-head.row { align-items: flex-start; flex-direction: column; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
