* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f7f7;
  color: #111;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    sans-serif;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

header {
  margin-bottom: 60px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
}

.description {
  margin-top: 14px;
  color: #666;
}

section {
  margin-top: 48px;
}

h2 {
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  );
  gap: 18px;
}

.card {
  padding: 24px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
}

.main-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status.ready {
  background: #dcfce7;
  color: #166534;
}

.status.draft {
  background: #fef3c7;
  color: #92400e;
}

.branch,
.pr {
  color: #777;
  font-family: monospace;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 9px;
  background: #111;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.button.secondary {
  background: #eee;
  color: #111;
}