*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Familjen Grotesk", system-ui, sans-serif;
  background: #f5f7f2;
  color: #17201b;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
.topbar {
  min-height: 58px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #d2ded6;
  background: #ffffff;
}
.brand, .eyebrow, .office-status, .section-head span, .tool-kicker, footer {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}
.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
}
nav {
  display: flex;
  gap: 16px;
  color: #586457;
  font-size: 14px;
}
main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 42px;
}
.overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}
.eyebrow {
  margin: 0 0 8px;
  color: #0a7a61;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
h1 {
  max-width: 780px;
  margin: 0;
  color: #111915;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}
.office-status {
  display: grid;
  gap: 8px;
  color: #27332e;
  font-size: 13px;
}
.office-status span {
  padding: 8px 10px;
  border-left: 4px solid #0a7a61;
  background: #ffffff;
}
.tool-band {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #d2ded6;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
h2 {
  margin: 0;
  color: #17201b;
  font-size: 24px;
}
.section-head span {
  color: #6f4d38;
  font-size: 12px;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.tool-card {
  min-height: 178px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid #d2ded6;
  border-radius: 8px;
  background: #ffffff;
}
.tool-card:hover {
  border-color: #0a7a61;
  text-decoration: none;
}
.tool-card.primary {
  border-color: #0a7a61;
  box-shadow: inset 0 0 0 1px rgba(10, 122, 97, 0.16);
}
.tool-card.muted {
  background: #e9f0ea;
  color: #586457;
}
.tool-kicker {
  color: #7a4931;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tool-card strong {
  color: #111915;
  font-size: 20px;
}
.tool-card span:last-child {
  color: #586457;
  font-size: 14px;
}
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #586457;
  font-size: 12px;
}
@media (max-width: 860px) {
  .topbar, footer { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
  nav { flex-wrap: wrap; }
  main { width: min(100% - 28px, 680px); padding-top: 26px; }
  .overview { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr; }
}
