/**
 * Unlistd Waitlist — form.css v5.6.0
 */

/* ── Wrap ── */
.ulwf-wrap {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  color: #e8e4db;
  width: 100%;
  box-sizing: border-box;
}
.ulwf-wrap *, .ulwf-wrap *::before, .ulwf-wrap *::after {
  box-sizing: border-box;
}
.ulwf-card {
  /* intentionally no card styling — host page provides context */
}

/* ── Typography ── */
.ulwf-header-label {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7a5e35;
  margin-bottom: 8px;
}
.ulwf-header-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  color: #e8e4db;
  line-height: 1.3;
}
.ulwf-header-title em { font-style: italic; color: #c9a063; }
.ulwf-accent {
  width: 28px;
  height: 1px;
  background: #7a5e35;
  margin: 16px 0 28px;
}
.ulwf-section {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7a5e35;
  margin-bottom: 12px;
}
.ulwf-divider {
  height: 0.5px;
  background: rgba(255,255,255,.12);
  margin: 22px 0;
}

/* ── Field groups ── */
.ulwf-fq  { margin-bottom: 16px; }
.ulwf-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.ulwf-pair .ulwf-fq { margin-bottom: 0; }
@media (max-width: 520px) { .ulwf-pair { grid-template-columns: 1fr; } }

.ulwf-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #e8e4db;
  margin-bottom: 5px;
}
.ulwf-hint {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px;
  color: #5a5750;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ── Inputs ── */
.ulwf-wrap input[type="text"],
.ulwf-wrap input[type="email"],
.ulwf-wrap input[type="number"],
.ulwf-wrap input[type="tel"] {
  display: block;
  width: 100%;
  background: #141410;
  border: 0.5px solid rgba(255,255,255,.12);
  border-radius: 3px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #e8e4db;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.ulwf-wrap input[type="number"]::-webkit-inner-spin-button,
.ulwf-wrap input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.ulwf-wrap input:focus { border-color: #c9a063; }
.ulwf-wrap input::placeholder { color: #5a5750; }
.ulwf-wrap input.ulwf-err { border-color: #8a3030 !important; }

/* ── Phone row ── */
.ulwf-phone-row { display: flex; align-items: stretch; }
.ulwf-phone-flag {
  display: flex;
  align-items: center;
  padding: 0 11px;
  background: #141410;
  border: 0.5px solid rgba(255,255,255,.12);
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: #8a8680;
  white-space: nowrap;
  flex-shrink: 0;
}
.ulwf-phone-row input[type="tel"] { border-radius: 0 3px 3px 0; }
.ulwf-phone-row:focus-within .ulwf-phone-flag,
.ulwf-phone-row input[type="tel"]:focus { border-color: #c9a063; }

/* ── Chips ── */
.ulwf-opts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.ulwf-opt {
  background: #141410;
  border: 0.5px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 7px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #8a8680;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  line-height: 1.4;
  transition: background .15s, border-color .15s, color .15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.ulwf-opt:hover { border-color: #c9a063; color: #c9a063; }
.ulwf-opt.sel   { background: rgba(201,160,99,.12); border-color: #c9a063; color: #c9a063; }
.ulwf-multi .ulwf-opt.sel::before { content: '✓ '; font-size: 10px; }

/* Cost intent special chips */
.ulwf-opt-yes.sel { background: rgba(94,196,122,.12); border-color: #5ec47a; color: #5ec47a; }
.ulwf-opt-no.sel  { background: rgba(192,96,96,.12);  border-color: #c06060; color: #c06060; }

/* ── Submit ── */
.ulwf-submit {
  display: block;
  width: 100%;
  background: #c9a063;
  border: none;
  border-radius: 3px;
  padding: 14px;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #080807;
  cursor: pointer;
  margin-top: 24px;
  transition: background .2s, opacity .2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.ulwf-submit:hover:not(:disabled) { background: #b8924f; }
.ulwf-submit:disabled { opacity: .55; cursor: not-allowed; }

/* ── Footer / error ── */
.ulwf-foot {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px;
  color: #5a5750;
  text-align: center;
  margin-top: 12px;
  line-height: 1.7;
}
.ulwf-error {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 11px;
  color: #c06060;
  margin-top: 10px;
  min-height: 16px;
  line-height: 1.5;
}

/* ── Success state ── */
.ulwf-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}
.ulwf-success-dash  { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-style: italic; color: #c9a063; margin-bottom: 16px; line-height: 1; }
.ulwf-success-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: #e8e4db; margin-bottom: 10px; }
.ulwf-success-sub   { font-size: 13px; color: #8a8680; line-height: 1.8; }

/* ── Policy note ── */
.ulwf-policy-note {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px;
  color: #3a3835;
  text-align: center;
  margin-top: 10px;
  line-height: 1.7;
}
.ulwf-policy-note a {
  color: #5a5750;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.ulwf-policy-note a:hover { color: #c9a063; }
