* {
  box-sizing: border-box;
}
a, button, [role="button"] {
  touch-action: manipulation;
}
a:active, button:active, [role="button"]:active {
  filter: brightness(1.2);
  transition: none !important;
}
:where(a, button, input, select, textarea, summary, [role="button"]):focus-visible {
  outline: 3px solid #9fcbff;
  outline-offset: 3px;
}
:where(button, [role="button"]):disabled,
:where(button, [role="button"])[aria-disabled="true"] {
  opacity: 0.58;
  cursor: not-allowed;
  filter: none;
}
.skip-link:focus {
  top: 16px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.grid {
  display: grid;
  gap: 18px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card h3, .timeline-body h3, .stat-value {
  margin: 0;
}
.card p, .timeline-body p, .stat-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.list-tight {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.6;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.timeline-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.stat-label {
  font-weight: 700;
}
.stat-note {
  margin-top: 8px;
  font-size: 13px;
}
.machine-block pre {
  margin-top: 16px;
  margin-bottom: 0;
  box-shadow: none;
}
form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}
input::placeholder, textarea::placeholder {
  color: #91a5c2;
  opacity: 1;
}
select option {
  background: #0d1a2a;
  color: var(--text);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
pre, code {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
code {
  padding: 3px 7px;
}
.muted {
  color: var(--muted);
  font-size: 14px;
}
.footer-meta {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.footer-links-centered {
  width: 100%;
}
.footer-links-centered .inline-links {
  width: min(100%, 760px);
  margin-inline: auto;
  justify-content: center;
  gap: 30px 40px;
}
.footer-link-strip {
  width: 100%;
  justify-self: stretch;
}