:root {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #193230;
  background: #f6f7f3;
  font-synthesis: none;
  line-height: 1.55;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
body {
  margin: 0;
}
header {
  padding: 22px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d8dfd8;
  background: #fff;
}
.brand {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: inherit;
}
.brand span {
  display: inline-block;
  margin-left: 22px;
  padding-left: 22px;
  border-left: 1px solid #cad3cd;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
main {
  max-width: 1100px;
  min-height: 75vh;
  margin: 0 auto;
  padding: 50px 26px 80px;
}
footer {
  border-top: 1px solid #d8dfd8;
  padding: 24px 5vw;
  color: #61736c;
  font-size: 12px;
}
h1 {
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 8px 0 18px;
}
h2 {
  font-size: 21px;
  font-weight: 600;
  margin: 32px 0 15px;
}
h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
p {
  margin: 10px 0 18px;
}
a {
  color: #176251;
  text-underline-offset: 3px;
}
button,
.button {
  border: 1px solid #234c42;
  border-radius: 5px;
  padding: 10px 17px;
  background: #234c42;
  color: #fff;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
button:hover,
.button:hover {
  background: #123b30;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.secondary {
  background: transparent;
  color: #234c42;
  border-color: #b3c5bc;
}
.secondary:hover {
  background: #e4eee5;
}
label {
  display: block;
  margin: 18px 0 7px;
  font-size: 13px;
  font-weight: 600;
}
input,
textarea,
select {
  display: block;
  width: 100%;
  background: #fff;
  color: inherit;
  font: inherit;
  padding: 11px 12px;
  border: 1px solid #b9c8c0;
  border-radius: 4px;
}
input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid #8dbca9;
  outline-offset: 3px;
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.auth {
  max-width: 440px;
  margin: 25px auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #58766c;
}
.muted {
  color: #5b7066;
  font-size: 14px;
}
.error {
  color: #9c302c;
  background: #fff1ed;
  padding: 12px 15px;
  border-left: 3px solid #ab413c;
  white-space: pre-wrap;
}
.success {
  color: #235b43;
  background: #e7f3e9;
  padding: 12px 15px;
}
.row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.section {
  border-top: 1px solid #d1ddd4;
  margin-top: 30px;
  padding-top: 25px;
}
.list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.list > li {
  border-top: 1px solid #d8dfd8;
  padding: 20px 0;
}
.list > li:last-child {
  border-bottom: 1px solid #d8dfd8;
}
.list a.title {
  font-size: 18px;
  font-weight: 550;
  text-decoration: none;
}
.list a.title:hover {
  text-decoration: underline;
}
.tag {
  display: inline-block;
  font-size: 11px;
  background: #e1eae2;
  border-radius: 3px;
  padding: 3px 7px;
  margin: 0 6px 5px 0;
  color: #37594b;
  letter-spacing: 0.03em;
}
.prose {
  max-width: 820px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.connection {
  max-width: 650px;
  margin: 30px auto;
  padding: 25px 30px;
  background: #fff;
  border: 1px solid #cddcd0;
  border-radius: 7px;
}
.connection code,
code {
  font:
    13px ui-monospace,
    SFMono-Regular,
    monospace;
  overflow-wrap: anywhere;
}
pre {
  padding: 18px;
  background: #edf1eb;
  overflow: auto;
  font-size: 13px;
  white-space: pre-wrap;
}
.empty {
  padding: 45px 0;
  color: #5b7066;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.form-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tiny {
  font-size: 12px;
}
details {
  margin: 20px 0;
}
summary {
  cursor: pointer;
  font-weight: 550;
}
#account {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}
#account button {
  padding: 6px 10px;
  font-size: 12px;
}
.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 26px 0;
}
.tabs button {
  padding: 7px 13px;
}
.value {
  margin: 0 0 20px;
}
.label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b7066;
  margin-bottom: 4px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
td,
th {
  text-align: left;
  border-bottom: 1px solid #d1ddd4;
  padding: 10px;
  vertical-align: top;
}
th {
  font-size: 11px;
  text-transform: uppercase;
}
.notice {
  border-left: 3px solid #87a697;
  padding: 8px 18px;
  background: #edf1eb;
  margin: 25px 0;
}
.field {
  margin-top: 24px;
}
@media (max-width: 650px) {
  main {
    padding: 30px 18px 60px;
  }
  header {
    padding: 18px;
  }
  .brand span {
    margin-left: 12px;
    padding-left: 12px;
  }
  #account > span {
    display: none;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .connection {
    padding: 20px;
  }
  .tabs {
    gap: 7px;
  }
  table {
    display: block;
    overflow: auto;
  }
}
