:root {
  --font-display: "Manrope", "Manrope Fallback", Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-display);
  font-style: normal;
  font-variation-settings: "wght" 650;
  letter-spacing: -0.025em;
}

.phase2-turnstile {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  min-height: 68px;
}

.phase2-turnstile__label {
  color: var(--muted, #4b5b72);
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0;
}

.phase2-turnstile__test {
  background: #edf7f1;
  border: 1px solid #86b79a;
  border-radius: 8px;
  color: #174f31;
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 42rem;
  padding: 10px 12px;
}

.phase2-form-status {
  border-left: 3px solid var(--brand, #8a5a14);
  color: var(--ink, #0b1e3b);
  display: none;
  line-height: 1.55;
  margin-top: 14px;
  padding: 10px 12px;
}

.phase2-form-status[data-visible="true"] {
  display: block;
}

.phase2-form-status[data-kind="error"] {
  background: #fff4f5;
  border-left-color: var(--danger, #b3122b);
}

.phase2-form-status[data-kind="success"] {
  background: #f0f8f3;
  border-left-color: #247a47;
}

.phase2-form-status[data-kind="info"] {
  background: var(--paper-2, #f5f8fc);
}

.phase2-honeypot {
  height: 1px !important;
  left: -10000px !important;
  overflow: hidden !important;
  position: absolute !important;
  top: auto !important;
  width: 1px !important;
}

[data-quote-form][aria-busy="true"] button[type="submit"] {
  cursor: wait;
  opacity: 0.7;
}

@media (max-width: 380px) {
  .phase2-turnstile {
    transform: scale(0.92);
    transform-origin: left top;
  }
}
