/* Shared CC product waitlist — works on any marketing landing (mobile-first). */
.cc-waitlist {
  position: relative;
  z-index: 2;
  background: #1f1b17;
  border-bottom: 1px solid #3d3830;
  padding: clamp(22px, 5vw, 36px) 0;
  color: #c9c0b5;
}
.cc-waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 28px);
  text-align: center;
}
.cc-waitlist-label {
  font-family: ui-monospace, 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a89f94;
  margin: 0 0 10px;
}
.cc-waitlist-title {
  margin: 0;
  font-size: clamp(1.2rem, 4.5vw, 1.65rem);
  line-height: 1.25;
  font-weight: 600;
  color: #f3ede4;
}
.cc-waitlist-lede {
  margin: 12px 0 0;
  font-size: clamp(14px, 3.5vw, 15px);
  line-height: 1.65;
  color: #c9c0b5;
}
.cc-waitlist-lede a {
  color: #e8c4a8;
}
.cc-waitlist-form {
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 100%;
}
.cc-waitlist-form input {
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid #4a4238;
  background: #faf7f2;
  color: #2a2420;
  min-width: 0;
  flex: 1 1 160px;
  max-width: 100%;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12);
}
.cc-waitlist-form input:focus {
  outline: 2px solid #a85d2a;
  outline-offset: 1px;
}
.cc-waitlist-btn {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  min-height: 44px;
  border: 1px solid #e8dfd0;
  background: #a85d2a;
  color: #faf7f2;
  cursor: pointer;
  flex: 0 0 auto;
}
.cc-waitlist-btn:hover { background: #8b4a1f; }
.cc-waitlist-btn:disabled { opacity: 0.65; cursor: wait; }
.cc-waitlist-msg {
  margin: 14px auto 0;
  font-family: ui-monospace, 'IBM Plex Mono', monospace;
  font-size: 13px;
  max-width: 36em;
}
.cc-waitlist-msg.ok { color: #7bc9a0; }
.cc-waitlist-msg.err { color: #e8a090; }
.cc-waitlist-fine {
  margin: 14px auto 0;
  font-size: 12px;
  color: #8a8278;
  line-height: 1.55;
}
@media (max-width: 540px) {
  .cc-waitlist-form {
    flex-direction: column;
    align-items: stretch;
  }
  .cc-waitlist-form input,
  .cc-waitlist-btn {
    width: 100%;
    flex: 1 1 auto;
  }
}
