:root {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.006em;
  font-optical-sizing: auto;
  font-feature-settings:
    "liga" 1,
    "calt" 1;
  font-synthesis: none;
  color: #111;
  background: #fff;
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}

* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
body {
  margin: 0;
  background: #fff;
}
a {
  color: #0645d8;
}
.wrap {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
}
.wrap.wide {
  width: min(960px, calc(100% - 32px));
}
.topbar {
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}
.brand {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}
.back {
  float: right;
}
.hero,
.page-head {
  padding: 48px 0 24px;
}
.hero h1,
.page-head h1 {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: -0.011em;
}
.kicker {
  margin: 0 0 8px;
  color: #777;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
}
.intro {
  margin: 12px 0 0;
  font-size: 14px;
}
.links {
  padding-bottom: 48px;
}
.card {
  display: block;
  padding: 14px 0;
  border-top: 1px solid #eee;
  text-decoration: none;
}
.card:last-child {
  border-bottom: 1px solid #eee;
}
.card-title {
  display: block;
  color: #0645d8;
  font-weight: 500;
}
.card-copy {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
}
.card-number {
  display: none;
}
.status-panel {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.status-lead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.status-word {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: -0.011em;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
}
.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #888;
}
.badge.online::before {
  background: #16833d;
}
.badge.offline::before {
  background: #c62222;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eee;
}
.fact {
  padding: 16px 0;
}
.fact-label {
  display: block;
  margin-bottom: 6px;
  color: #777;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.005em;
}
.fact-value {
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 48px;
  color: #888;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.005em;
  font-variant-numeric: tabular-nums;
}
.chart {
  min-height: 260px;
  padding: 16px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.chart svg {
  display: block;
  width: 100%;
  height: 220px;
}
.chart-line {
  fill: none;
  stroke: #0645d8;
  stroke-width: 2;
  stroke-linejoin: round;
}
.chart-axis {
  stroke: #eee;
}
.token-form {
  padding-bottom: 48px;
}
.mode-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.mode-tab {
  margin: 0 20px -1px 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #777;
  font: inherit;
  cursor: pointer;
}
.mode-tab.active {
  border-bottom-color: #0645d8;
  color: #111;
  font-weight: 500;
}
.mode-tab:disabled {
  color: #bbb;
  cursor: not-allowed;
}
.field {
  display: block;
  margin-bottom: 20px;
}
.field-label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 500;
}
.control {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0;
  background: #fff;
  color: #111;
  font: inherit;
}
select.control {
  height: 40px;
  padding: 0 36px 0 10px;
  border: 1px solid #ccc;
  border-radius: 0;
  appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='m1 1 5 5 5-5' fill='none' stroke='%23777' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  cursor: pointer;
}
select.control:focus {
  outline: none;
  border-color: #0645d8;
}
.text-input {
  height: 40px;
  padding: 0 10px;
}
.text-input:focus,
textarea.control:focus {
  outline: none;
  border-color: #0645d8;
}
textarea.control {
  min-height: 140px;
  padding: 10px;
  resize: vertical;
}
.upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px;
  border: 1px dashed #bbb;
}
.upload input {
  max-width: 100%;
}
.upload-name {
  color: #777;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.button {
  border: 0;
  padding: 9px 14px;
  background: #0645d8;
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}
.button:disabled {
  background: #9aa8c7;
  cursor: wait;
}
.form-status {
  color: #777;
  font-size: 12px;
}
.form-status.error {
  color: #c62222;
}
.token-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.token-results.single {
  grid-template-columns: 1fr;
}
.token-result {
  padding: 16px 0;
}
.token-result + .token-result {
  padding-left: 16px;
  border-left: 1px solid #eee;
}
.token-value {
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.token-label {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 11px;
  line-height: 15px;
}
.token-help {
  margin: 12px 0 0;
  color: #777;
  font-size: 11px;
  line-height: 16px;
}
.compare-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-upload {
  min-height: 140px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}
.table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
  border-top: 1px solid #ddd;
}
.token-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.token-table th,
.token-table td {
  padding: 11px 10px 11px 0;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}
.token-table th {
  color: #777;
  font-size: 11px;
  font-weight: 500;
}
.token-table .numeric {
  font-variant-numeric: tabular-nums;
  text-align: right;
}
@media (max-width: 520px) {
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .note {
    display: block;
  }
  .note span {
    display: block;
    margin-bottom: 4px;
  }
  .token-results {
    grid-template-columns: 1fr;
  }
  .token-result + .token-result {
    padding-left: 0;
    border-top: 1px solid #eee;
    border-left: 0;
  }
  .compare-inputs {
    grid-template-columns: 1fr;
  }
}
