:root {
  color-scheme: light;
  --bg: #e8efe7;
  --panel: rgba(248, 252, 247, 0.92);
  --text: #16221d;
  --muted: #5b6b63;
  --line: rgba(22, 34, 29, 0.12);
  --accent: #2f6b4f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(47, 107, 79, 0.16), rgba(47, 107, 79, 0)),
    linear-gradient(135deg, #f5faf4 0%, #dceadf 48%, #c4d7cb 100%);
}

.dashboard-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.topbar,
.status-grid article,
.command-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(20, 46, 34, 0.08);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
}

.eyebrow,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

h1,
h2 {
  margin: 0.5rem 0 0;
  font-family: "Aptos Display", "Segoe UI", sans-serif;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
}

.status-pill {
  border-radius: 999px;
  background: rgba(47, 107, 79, 0.12);
  color: var(--accent);
  padding: 0.8rem 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.status-grid article,
.command-panel {
  padding: 1.4rem;
}

.status-grid p,
.command-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.command-panel {
  margin-top: 1rem;
}

.command-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

code {
  display: inline-block;
  background: rgba(22, 34, 29, 0.08);
  border-radius: 10px;
  padding: 0.25rem 0.45rem;
  color: var(--text);
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
  }

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

  .status-pill {
    white-space: normal;
  }
}