.official-site-check {
  display: grid;
  gap: 1.35rem;
  margin: 2.5rem 0;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid #526457;
  background: #101714;
  color: #eef4eb;
}

.official-site-check__intro {
  max-width: 50rem;
}

.official-site-check__intro > span,
.official-site-check__result-copy > span,
.official-site-check__host > span,
.official-site-check__privacy,
.official-site-check__status {
  color: #b4e55b;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.official-site-check__intro h2 {
  margin: .45rem 0 .65rem;
  color: #fff;
}

.official-site-check__intro p,
.official-site-check__privacy,
.official-site-check__status {
  margin: 0;
  color: #c5d0c6;
  line-height: 1.62;
}

.official-site-check__form {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(13rem, .8fr) auto;
  gap: .9rem;
  align-items: end;
}

.official-site-check__form label {
  display: grid;
  gap: .5rem;
  color: #fff;
  font-weight: 800;
}

.official-site-check__form input,
.official-site-check__form select {
  width: 100%;
  min-height: 2.9rem;
  border: 1px solid #59705d;
  border-radius: 0;
  padding: .7rem .8rem;
  background: #08100c;
  color: #f2f7ef;
  font: inherit;
}

.official-site-check__form input:focus,
.official-site-check__form select:focus {
  outline: 2px solid #d7ff67;
  outline-offset: 2px;
}

.official-site-check__controls,
.official-site-check__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.official-site-check__controls {
  min-height: 2.9rem;
}

.official-site-check button,
.official-site-check__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border: 1px solid #d7ff67;
  border-radius: 0;
  padding: .72rem 1rem;
  background: #d7ff67;
  color: #11170f;
  font: inherit;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
}

.official-site-check button[type="reset"],
.official-site-check__actions a,
.official-site-check__actions button {
  border-color: #617566;
  background: transparent;
  color: #eff6ed;
}

.official-site-check__result {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(15rem, .8fr);
  border-top: 1px solid #526457;
  border-left: 4px solid #829088;
  background: #0a110d;
}

.official-site-check__result[data-level="pause"] {
  border-left-color: #ff8878;
}

.official-site-check__result[data-level="review"] {
  border-left-color: #f0ca62;
}

.official-site-check__result[data-level="clear"] {
  border-left-color: #b4e55b;
}

.official-site-check__result-copy,
.official-site-check__actions {
  min-width: 0;
  padding: 1.2rem;
}

.official-site-check__actions {
  align-content: start;
  border-left: 1px solid #445447;
}

.official-site-check__result h3 {
  margin: .45rem 0 .8rem;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.official-site-check__host {
  display: grid;
  gap: .25rem;
  margin: 0 0 1rem;
}

.official-site-check__host code {
  overflow-wrap: anywhere;
  color: #dcebdd;
  font: 700 .9rem/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.official-site-check__signals,
.official-site-check__steps {
  display: grid;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.official-site-check__signals {
  margin-bottom: 1rem;
}

.official-site-check__signals li,
.official-site-check__steps li {
  min-width: 0;
  padding: .72rem .78rem;
  border: 1px solid #415044;
  color: #d8e4d9;
  font-size: .94rem;
  line-height: 1.5;
}

.official-site-check__signals li::before {
  display: inline-block;
  min-width: 1.75rem;
  color: #b4e55b;
  content: attr(data-signal);
  font-size: .72rem;
  font-weight: 800;
}

.official-site-check__steps {
  counter-reset: step;
}

.official-site-check__steps li {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr);
  gap: .5rem;
}

.official-site-check__steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  color: #f0ca62;
  font-size: .75rem;
  font-weight: 800;
}

.official-site-check__actions small {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  color: #b4e55b;
  font-size: .8rem;
}

@media (max-width: 760px) {
  .official-site-check {
    margin-inline: -1rem;
    border-inline: 0;
  }

  .official-site-check__form,
  .official-site-check__result {
    grid-template-columns: 1fr;
  }

  .official-site-check__controls button {
    flex: 1 1 10rem;
  }

  .official-site-check__actions {
    border-top: 1px solid #445447;
    border-left: 0;
  }
}
