:root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #182b28;
  background: #f5f7f4;
  font-size: 15px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
h1 {
  font-size: 36px;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin: 12px 0;
}
h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
}
h3 {
  margin-top: 24px;
}
p {
  color: #566961;
  line-height: 1.65;
}
a {
  color: inherit;
}
button {
  background: #185644;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.secondary {
  background: #e8efea;
  color: #24513f;
}
input,
select,
textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid #cbd6cf;
  border-radius: 7px;
  background: #fff;
  font: inherit;
  margin-top: 7px;
  color: #182b28;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
small,
.muted {
  font-size: 12px;
  color: #6c7d74;
  line-height: 1.6;
}
.brand {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}
.brand span {
  font-size: 14px;
  font-weight: 400;
  margin-left: 4px;
}
.login {
  max-width: 510px;
  margin: 14vh auto;
  padding: 32px;
}
.login form {
  margin: 36px 0 24px;
}
.shell {
  display: grid;
  grid-template-columns: 225px 1fr;
  min-height: 100vh;
}
aside {
  background: #e8eee7;
  padding: 35px 26px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
nav {
  display: grid;
  gap: 12px;
  margin-top: 54px;
}
nav a {
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
}
nav a:hover {
  background: #dce6dc;
}
.aside-foot {
  margin-top: auto;
  font-size: 12px;
  color: #687d6b;
  line-height: 1.8;
}
.aside-foot button {
  display: block;
  margin-top: 18px;
}
main {
  max-width: 1140px;
  padding: 44px 56px;
  width: 100%;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: #6c8070;
}
.badge {
  background: #dceadd;
  color: #285435;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0;
}
.metrics article,
.panel {
  background: white;
  border: 1px solid #dde4dc;
  border-radius: 12px;
  padding: 24px;
}
.metrics span {
  display: block;
  color: #6c7d74;
  font-size: 12px;
}
.metrics strong {
  display: block;
  font-size: 33px;
  margin-top: 13px;
  font-weight: 500;
}
.panel {
  margin: 18px 0;
}
.panel h2 {
  margin-top: 0;
}
section {
  scroll-margin-top: 25px;
  margin-bottom: 42px;
}
.row {
  display: flex;
  align-items: end;
  gap: 16px;
}
.row label {
  flex: 1;
}
.row button {
  margin-bottom: 18px;
  white-space: nowrap;
}
.grow {
  flex: 2 !important;
}
code {
  display: block;
  padding: 15px;
  background: #f1f5f0;
  border-radius: 7px;
  overflow-wrap: anywhere;
}
.source,
.document {
  padding: 16px 0;
  border-bottom: 1px solid #e9eee8;
}
.source:last-child,
.document:last-child {
  border: 0;
}
.source h3,
.document h3 {
  margin: 0 0 8px;
}
.source button {
  font-size: 12px;
  padding: 7px 12px;
  margin-right: 8px;
}
.source p {
  font-size: 13px;
}
#notice:not(:empty) {
  padding: 12px;
  background: #fff4d9;
  border-radius: 8px;
}
footer {
  font-size: 12px;
  color: #89968c;
  padding: 20px 0;
}
#installation-form {
  margin-top: 32px;
}
@media (max-width: 760px) {
  .shell {
    display: block;
  }
  aside {
    position: static;
    height: auto;
    padding: 20px;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    margin: 12px 0 0;
    gap: 0;
  }
  .aside-foot {
    display: none;
  }
  main {
    padding: 25px 18px;
  }
  .metrics {
    gap: 8px;
  }
  .metrics article {
    padding: 16px;
  }
  .row {
    display: block;
  }
  .row button {
    width: 100%;
  }
  h1 {
    font-size: 29px;
  }
}
