* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #172033;
  background: #f5f7fb;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  min-height: 260px;
  padding: 38px;
  align-items: end;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #153f2c 0%, #0f766e 48%, #f0c419 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
}

.subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

.login-panel,
.card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.login-panel {
  padding: 22px;
  border-radius: 18px;
  color: #172033;
}

label,
.label {
  display: block;
  color: #667085;
  font-size: 13px;
}

.login-row {
  display: flex;
  margin-top: 10px;
  gap: 10px;
}

select,
button {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  font-size: 15px;
}

select {
  min-width: 0;
  flex: 1;
  padding: 0 12px;
  background: #f3f6fa;
}

button {
  padding: 0 18px;
  color: #111827;
  background: #ffd51f;
  font-weight: 800;
  cursor: pointer;
}

.ghost {
  min-height: 36px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.identity {
  display: grid;
  margin-top: 22px;
  padding: 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-radius: 18px;
}

.identity strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.metrics {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.metric {
  min-height: 112px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.metric b {
  display: block;
  color: #0f766e;
  font-size: 28px;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 13px;
}

.grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.card {
  padding: 24px;
  border-radius: 20px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

h2 {
  margin: 0;
  font-size: 22px;
}

.context,
.list {
  margin-top: 18px;
}

.row {
  padding: 14px 0;
  border-top: 1px solid #eef2f7;
}

.row:first-child {
  border-top: 0;
}

.row-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
}

.row p {
  margin: 8px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #075985;
  background: #e0f2fe;
  font-weight: 800;
}

@media (max-width: 860px) {
  .hero,
  .identity,
  .grid {
    grid-template-columns: 1fr;
  }

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

  .login-row {
    flex-direction: column;
  }
}
