:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f7f8;
  color: #1e252b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #0d5c63;
  font-weight: 700;
  text-decoration: none;
}

.shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 40px 24px 56px;
}

.hero {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.eyebrow {
  color: #59636d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1 {
  font-size: 44px;
  line-height: 1;
  margin: 0;
}

.lede {
  color: #4c5964;
  font-size: 17px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 720px;
}

.health {
  background: #e8f3ee;
  border: 1px solid #b7d8c8;
  border-radius: 8px;
  color: #245443;
  font-weight: 800;
  padding: 10px 14px;
  white-space: nowrap;
}

.toolbar {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) 220px;
  margin-bottom: 22px;
}

input,
select {
  background: #ffffff;
  border: 1px solid #d7dde2;
  border-radius: 8px;
  color: #1e252b;
  font: inherit;
  min-height: 44px;
  padding: 0 14px;
}

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

.app-card {
  background: #ffffff;
  border: 1px solid #dde3e7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 18px;
}

.app-card__header {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.app-id {
  color: #6b7580;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 6px;
}

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

.mode {
  background: #f0ece3;
  border: 1px solid #d9cfbc;
  border-radius: 999px;
  color: #5f4f2d;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
  white-space: nowrap;
}

.description {
  color: #4c5964;
  line-height: 1.5;
  min-height: 72px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 16px;
}

.badges span {
  background: #edf5f6;
  border: 1px solid #c8dfe2;
  border-radius: 999px;
  color: #275d64;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 8px;
}

dl {
  display: grid;
  gap: 8px;
  margin: auto 0 18px;
}

dl div {
  display: flex;
  justify-content: space-between;
}

dt {
  color: #6b7580;
}

dd {
  font-weight: 800;
  margin: 0;
}

footer {
  border-top: 1px solid #e6eaed;
  display: flex;
  gap: 14px;
  padding-top: 14px;
}

.empty {
  background: #ffffff;
  border: 1px solid #dde3e7;
  border-radius: 8px;
  color: #4c5964;
  padding: 22px;
}

@media (max-width: 720px) {
  .shell {
    padding: 28px 16px 40px;
  }

  .hero {
    align-items: start;
    flex-direction: column;
  }

  h1 {
    font-size: 34px;
  }

  .toolbar {
    grid-template-columns: 1fr;
  }
}

