:root {
  --ink: #102a43;
  --muted: #61768a;
  --muted-2: #8ba0b2;
  --canvas: #edf4f8;
  --white: #ffffff;
  --line: #d9e7ef;
  --shadow: 0 18px 42px rgba(23, 61, 86, .10), 0 2px 6px rgba(23, 61, 86, .05);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--canvas); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 0%, rgba(133, 197, 219, .22), transparent 28rem),
    linear-gradient(135deg, #f4f8fb 0%, var(--canvas) 52%, #e8f1f6 100%);
  font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "tnum" 1;
}

a { color: inherit; }
.page-shell { max-width: 1240px; margin: 0 auto; padding: 34px 30px 26px; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  padding: 30px 34px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(128deg, #083b5c 0%, #0c5d75 54%, #0f7b86 100%);
  box-shadow: 0 18px 38px rgba(9, 62, 87, .20);
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -100px;
  top: -210px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255,255,255,.035), 0 0 0 64px rgba(255,255,255,.025);
  pointer-events: none;
}
.brand-lockup { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; flex: 0 0 54px;
  color: #a9ebee; border: 1px solid rgba(188, 238, 241, .35);
  border-radius: 16px; background: rgba(0, 33, 55, .28);
}
.brand-mark svg { width: 32px; height: 32px; }
.eyebrow, .section-kicker {
  margin: 0 0 8px; font-size: 11px; font-weight: 800; letter-spacing: .16em;
}
.eyebrow { color: #9bdae0; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 8px; font-size: clamp(24px, 3vw, 34px); letter-spacing: .02em; line-height: 1.2; }
.intro { margin: 0; color: rgba(235, 250, 252, .75); font-size: 14px; line-height: 1.6; }
.summary { display: flex; gap: 24px; padding: 3px 0 2px; position: relative; z-index: 1; }
.summary-item { min-width: 62px; text-align: center; }
.summary-item strong { display: block; font-size: 28px; line-height: 1; color: #fff; }
.summary-item span { display: block; margin-top: 8px; color: rgba(235,250,252,.72); font-size: 12px; white-space: nowrap; }
.summary-item.warning strong { color: #ffd38c; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin: 34px 2px 18px; }
.section-kicker { margin-bottom: 6px; color: #5b8ca2; }
h2 { margin-bottom: 0; font-size: 22px; letter-spacing: .02em; }
.section-note { margin: 0 0 3px; color: var(--muted); font-size: 13px; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.dashboard-card {
  --accent: #177b8b;
  --accent-soft: #e5f7f8;
  display: flex; min-height: 300px; flex-direction: column; padding: 25px 25px 22px;
  border: 1px solid var(--line); border-top: 5px solid var(--accent);
  border-radius: var(--radius); background: rgba(255,255,255,.94);
  box-shadow: var(--shadow); text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dashboard-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(23,61,86,.14), 0 3px 8px rgba(23,61,86,.06); border-color: color-mix(in srgb, var(--accent) 32%, var(--line)); }
.dashboard-card:focus-visible { outline: 4px solid color-mix(in srgb, var(--accent) 28%, transparent); outline-offset: 3px; }
.card-teal { --accent: #0d7a88; --accent-soft: #e0f5f6; }
.card-blue { --accent: #2563c9; --accent-soft: #e7efff; }
.card-indigo { --accent: #4a55af; --accent-soft: #eceeff; }
.card-amber { --accent: #c77a20; --accent-soft: #fff1de; }
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--accent); border-radius: 13px; background: var(--accent-soft); }
.card-icon svg { width: 25px; height: 25px; }
.status { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(255,255,255,.65); }
.status-live { color: #197349; background: #e6f6ed; }
.status-pending { color: #a55b08; background: #fff0d5; }
.card-label { margin: 22px 0 8px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.dashboard-card h3 { max-width: 28em; margin-bottom: 10px; font-size: 21px; line-height: 1.4; letter-spacing: .01em; }
.card-desc { max-width: 32em; min-height: 46px; margin-bottom: 20px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.card-meta { display: flex; flex-wrap: wrap; gap: 7px 18px; padding-top: 15px; border-top: 1px dashed #dce7ed; color: var(--muted); font-size: 12px; line-height: 1.6; }
.card-meta span { display: inline-flex; gap: 5px; }
.card-meta b { color: #8196a5; font-weight: 600; }
.card-action { display: flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 20px; color: var(--accent); font-size: 14px; font-weight: 800; }
.card-action span { font-size: 19px; line-height: 1; transition: transform .2s ease; }
.dashboard-card:hover .card-action span { transform: translate(3px, -3px); }

.page-footer { display: flex; justify-content: space-between; gap: 16px; padding: 24px 3px 0; color: var(--muted-2); font-size: 12px; line-height: 1.6; }

@media (max-width: 760px) {
  .page-shell { padding: 18px 15px 20px; }
  .topbar { align-items: flex-start; flex-direction: column; padding: 24px 22px; gap: 24px; }
  .brand-lockup { align-items: flex-start; gap: 13px; }
  .brand-mark { width: 46px; height: 46px; flex-basis: 46px; border-radius: 13px; }
  .brand-mark svg { width: 27px; height: 27px; }
  h1 { font-size: 25px; }
  .summary { width: 100%; justify-content: space-between; padding-right: 20px; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 28px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-card { min-height: 0; padding: 22px 20px 20px; }
  .dashboard-card h3 { font-size: 19px; }
  .card-desc { min-height: 0; }
  .page-footer { flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
