* {
  box-sizing: border-box;
}

body {
  background: #f4f7fb;
  color: #142033;
  font: 16px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

.dashboard-shell {
  display: grid;
  gap: 28px;
  margin: 0 auto;
  max-width: 1120px;
  min-height: 100vh;
  padding: 64px 28px 28px;
}

.dashboard-main {
  align-content: center;
  display: grid;
  gap: 18px;
  min-height: 56vh;
}

.project-mark {
  color: #0f766e;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 7vw, 76px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 920px;
}

p {
  color: #536276;
  font-size: 19px;
  margin: 0;
  max-width: 720px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.primary-action,
.secondary-action {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  text-decoration: none;
}

.primary-action {
  background: #0f766e;
  color: #fff;
  font-size: 18px;
  min-width: 220px;
}

.primary-action:hover {
  background: #115e59;
}

.secondary-action {
  background: #fff;
  border: 1px solid #cfd9e6;
  color: #1f3148;
}

.status-band {
  border-top: 1px solid #d8e2ee;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 22px;
}

.status-band div {
  display: grid;
  gap: 6px;
}

.status-band strong {
  font-size: 15px;
}

.status-band span {
  color: #607086;
  font-size: 14px;
}

@media (max-width: 760px) {
  .dashboard-shell {
    padding: 36px 18px 20px;
  }

  .status-band {
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }
}
