* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f4f7f6;
  color: #17211d;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(720px, 100%);
  background: white;
  border: 1px solid #d9e1dd;
  border-radius: 18px;
  padding: 42px;
  box-shadow: 0 14px 40px rgba(20, 40, 30, 0.08);
}

.brand {
  font-weight: 700;
  color: #35654d;
}

h1 {
  margin: 8px 0 12px;
  font-size: clamp(36px, 7vw, 58px);
}

.lead {
  line-height: 1.7;
  font-size: 18px;
  color: #4d5b54;
}

.status-panel {
  margin-top: 32px;
  border: 1px solid #d9e1dd;
  border-radius: 12px;
  overflow: hidden;
}

.status-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-bottom: 1px solid #e7ece9;
}

.status-panel div:last-child {
  border-bottom: 0;
}

.status-panel span {
  color: #66736c;
}

.status-panel strong {
  text-align: right;
}

.phase {
  margin-top: 28px;
  font-size: 14px;
  color: #718078;
}
