/* Self-contained: no framework, no reset, nothing inherited from the page except font-family. Every class is
   pp-prefixed. Custom properties live on .pp-wrap, so they work whether or not the component is rendered in a
   shadow root (Webflow may isolate code components in one). */
.pp-wrap {
  --pp-ink: #1b1b19;
  --pp-ink-muted: #45423b;
  --pp-form-bg: #fbfaf6;
  --pp-lime: #ccff33;
  --pp-lime-hover: #ddff66;
  --pp-near-black: #141414;
  --pp-error: #c4291c;
  width: 100%;
  max-width: 660px;
  box-sizing: border-box;
  font-family: inherit;
  color: var(--pp-ink);
  text-align: left;
}
.pp-wrap *,
.pp-wrap *::before,
.pp-wrap *::after {
  box-sizing: border-box;
}
.pp-prompt-row {
  margin: 0 0 16px;
}
.pp-prompt {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 9999px;
  background-color: var(--pp-near-black);
  color: var(--pp-lime);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.pp-prompt svg {
  flex: 0 0 auto;
  margin-left: 10px;
}
.pp-form {
  margin: 0;
  border: 2px solid var(--pp-ink);
  background-color: var(--pp-form-bg);
}
.pp-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.pp-input {
  /* The form's own border is the only frame: no focus ring on the field itself. */
  flex: 1 1 0%;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--pp-ink);
  font-family: inherit;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  outline: none;
}
.pp-input::placeholder {
  color: rgba(69, 66, 59, 0.6);
  opacity: 1;
}
.pp-submit {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 28px;
  border: 0;
  border-left: 2px solid var(--pp-ink);
  border-radius: 0;
  background-color: var(--pp-lime);
  color: var(--pp-near-black);
  font-family: inherit;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s;
}
.pp-submit:hover:not(:disabled) {
  background-color: var(--pp-lime-hover);
}
.pp-submit:disabled {
  background-color: rgba(27, 27, 25, 0.1);
  color: rgba(69, 66, 59, 0.4);
  cursor: not-allowed;
}
.pp-submit:focus-visible,
.pp-chip:focus-visible {
  outline: 3px solid var(--pp-ink);
  outline-offset: -3px;
}
.pp-status {
  min-height: 22px;
  margin: 16px 0 0;
  display: flex;
  align-items: center;
}
.pp-status-text {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--pp-ink-muted);
}
.pp-status-error {
  color: var(--pp-error);
}
.pp-spinner {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border: 2px solid rgba(69, 66, 59, 0.3);
  border-top-color: var(--pp-ink-muted);
  border-radius: 50%;
  animation: pp-spin 0.8s linear infinite;
}
@keyframes pp-spin {
  to {
    transform: rotate(360deg);
  }
}
.pp-chips {
  margin: 16px 0 -10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.pp-chips-label {
  margin: 0 14px 10px 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pp-ink-muted);
}
.pp-chip {
  display: block;
  margin: 0 10px 10px 0;
  padding: 8px 16px;
  border: 1px solid rgba(27, 27, 25, 0.2);
  border-radius: 9999px;
  background: transparent;
  color: var(--pp-ink-muted);
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.pp-chip:hover {
  border-color: var(--pp-ink);
}
.pp-chip:active {
  transform: scale(0.94);
}
/* Stack the button under the input, full width, on phones and small tablets (Webflow's 767px breakpoint). */
@media (max-width: 767px) {
  .pp-row {
    flex-direction: column;
    align-items: stretch;
  }
  .pp-submit {
    width: 100%;
    padding: 16px 28px;
    border-left: 0;
    border-top: 2px solid var(--pp-ink);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pp-spinner {
    animation-duration: 2.4s;
  }
}

