:root {
  color: #11130f;
  background: #f3f1e8;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #f3f1e8;
}

.axon-bootstrap {
  min-height: 100dvh;
  box-sizing: border-box;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 32px;
  color: #11130f;
  text-align: center;
}

.axon-bootstrap__brand {
  font-weight: 800;
  font-size: clamp(22px, 7vw, 36px);
  letter-spacing: -0.05em;
}

.axon-bootstrap__signal {
  width: 52px;
  height: 6px;
  border: 1px solid #11130f;
  background: #bdfa2f;
  animation: axon-bootstrap-pulse 1.1s ease-in-out infinite alternate;
}

.axon-bootstrap p {
  margin: 0;
  color: #5f6258;
  font-size: 15px;
}

.axon-bootstrap h1 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(24px, 8vw, 38px);
  line-height: 1.05;
}

.axon-bootstrap button {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #11130f;
  border-radius: 0;
  background: #bdfa2f;
  color: #11130f;
  font: inherit;
  font-weight: 700;
}

@keyframes axon-bootstrap-pulse {
  from { transform: scaleX(0.35); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .axon-bootstrap__signal { animation: none; }
}
