* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f6f7;
  color: #1d1d1f;
}
.wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.card {
  width: 100%;
  max-width: 520px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}
.brand { text-align: center; margin-bottom: 24px; }
.brand-name { font-weight: 800; letter-spacing: .08em; font-size: 24px; }
.brand-sub { margin-top: 6px; color: #666; font-size: 14px; }
.status {
  display: flex;
  gap: 14px;
  align-items: center;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}
.status-neutral { background: #f3f4f6; }
.status-good { background: #ecfdf3; }
.status-bad { background: #fef2f2; }
.status-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  font-weight: 800;
}
.status-title { font-weight: 800; font-size: 17px; }
.status-text { margin-top: 3px; font-size: 13px; color: #555; line-height: 1.4; }
.details {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.row:last-child { border-bottom: 0; }
.row span { color: #666; }
.row strong { text-align: right; }
.actions { margin-top: 20px; }
.button {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: #111827;
  color: white;
  padding: 13px 16px;
  border-radius: 10px;
  font-weight: 700;
}
.footer {
  margin: 22px 0 0;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.hidden { display: none; }
