.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warn);
  box-shadow: 0 0 0 3px rgba(255, 194, 71, .15);
  flex: none;
}

.stamp {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.headline {
  margin: 10px 0 0;
  font-size: var(--size-display);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: .98;
  text-transform: uppercase;
  text-wrap: balance;
}

.kicker {
  font-size: var(--size-kicker);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
}

.lede {
  margin: 0;
  max-width: var(--lede-column);
  font-size: var(--size-lede);
  line-height: 1.5;
  color: var(--text-body);
  text-wrap: pretty;
}

.typed {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--size-mono);
  color: var(--text-label);
}

.typed__prompt {
  color: var(--go);
}

.typed__caret {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--go);
  animation: caret 1s steps(1) infinite;
}

/* One hairline grid: the gap is the rule, and the border closes it off at the edge. */
.counters {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}

.counter {
  background: var(--panel);
  padding: 10px 18px;
  min-width: 86px;
}

.counter__label {
  display: block;
  font-size: var(--size-label);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-label);
}

.counter__value {
  display: block;
  font-size: var(--size-figure);
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--text-heading);
}

.counter__value--accent {
  color: var(--accent);
}

.counter__value--warn {
  color: var(--warn);
}

.counter__value--go {
  color: var(--go);
}

.counter__value--alert {
  color: var(--alert);
}

.capture {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: var(--capture-column);
}

.capture__field {
  flex: 1;
  min-width: 200px;
  height: var(--control-height);
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1px solid var(--field-border);
  background: var(--field);
  color: var(--text-heading);
  font-family: var(--font-mono);
  font-size: var(--size-mono);
  outline: none;
}

.capture__field:focus {
  border-color: var(--accent);
}

.capture__button {
  height: var(--control-height);
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.capture__button:hover:not(:disabled) {
  background: var(--accent-lit);
  border-color: var(--accent-lit);
}

.capture__button:disabled {
  cursor: progress;
  opacity: .7;
}

.note {
  margin: 0;
  min-height: 18px;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--text-label);
}

.note--joined {
  color: var(--go);
}

.note--failed {
  color: var(--alert);
}
