.ea-page { padding: 2.5rem 0 4rem; }
.ea-wrap { max-width: 720px; }
.ea-page .ea-form { margin-top: 1.5rem; }
.ea-form { position: relative; }
.ea-error { color: #b91c1c; font-size: 0.8125rem; margin-top: 0.4rem; }
.ea-ok { color: #047857; background: #ecfdf5; border: 1px solid #a7f3d0; padding: 0.75rem 1rem; border-radius: 12px; margin: 1rem 0; }
.ea-score { display: flex; align-items: baseline; gap: 0.5rem; margin: 1rem 0; }
.ea-score strong { font-size: 2.5rem; color: var(--primary); line-height: 1; }
.ea-score span { color: var(--text-muted); font-size: 0.9rem; }
.ea-bullets { margin: 1rem 0 1.25rem; padding-left: 1.2rem; }
.ea-bullets li { margin: 0.4rem 0; color: var(--text); list-style: disc; }
.ea-downloads { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.25rem 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-checks--invalid .ea-legal-error { display: block; }
.form-check--invalid { color: #b91c1c; }
.form-check--invalid input[type="checkbox"] { outline: 2px solid #b91c1c; outline-offset: 2px; }
.ea-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: inherit;
  color: var(--text);
}
.ea-loader[hidden] { display: none; }
.ea-loader strong { font-size: 1.05rem; }
.ea-loader span:last-child { color: var(--text-muted); font-size: 0.875rem; }
.ea-loader__spin {
  width: 36px;
  height: 36px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: ea-spin 0.8s linear infinite;
}
@keyframes ea-spin {
  to { transform: rotate(360deg); }
}
.ea-form.is-busy { pointer-events: none; }

