:root {
  color-scheme: light;
  --ink: #18352f;
  --muted: #647570;
  --line: #dce4de;
  --green: #226849;
  --paper: #f7f8f4;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.site {
  max-width: 1160px;
  margin: auto;
  padding: 0 40px;
}
header {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
a {
  color: inherit;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
.mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--ink);
  border-radius: 11px;
  color: white;
  font-size: 15px;
  letter-spacing: -1px;
}
.environment {
  font-size: 12px;
  color: var(--muted);
}
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 65px 0 47px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.9px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 22px;
}
h1 {
  font-weight: 550;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0 0 22px;
}
.intro {
  max-width: 530px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-top: 5px;
  padding: 10px 13px;
  background: #e6efe6;
  border: 1px solid #d2e1d4;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}
.dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: currentColor;
}
.offline {
  background: #fff0dc;
  color: #8d591a;
  border-color: #e9d3b1;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 25px;
  min-height: 209px;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 29px;
}
.number {
  font-size: 12px;
  color: #94a19a;
}
.tag {
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  background: #f0f3ef;
  padding: 5px 8px;
  border-radius: 5px;
}
.ready,
.accepted {
  background: #e8f1e9;
  color: var(--green);
}
.failed {
  background: #fff0dc;
  color: #8d591a;
}
h2 {
  font-size: 17px;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
}
.service p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.release {
  padding: 42px 0 36px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}
.refresh {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 13px;
  background: #fff;
}
a:hover {
  color: var(--green);
}
a:focus-visible {
  outline: 3px solid #78a886;
  outline-offset: 4px;
}
dl {
  margin: 0;
}
dl > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
dt {
  color: var(--muted);
}
dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.mono {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
}
.note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.6;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 0 35px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
footer a {
  text-decoration: none;
}
@media (max-width: 700px) {
  .site {
    padding: 0 20px;
  }
  header {
    height: 80px;
  }
  .environment {
    max-width: 100px;
    text-align: right;
  }
  .hero {
    padding: 37px 0 28px;
    flex-direction: column;
    gap: 24px;
  }
  h1 {
    letter-spacing: -1px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: 150px;
    padding: 22px;
  }
  .service-top {
    margin-bottom: 18px;
  }
  dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .release {
    padding-top: 30px;
  }
  footer {
    gap: 12px;
    flex-direction: column;
  }
}
