/* ============================================================
   WHITELIST PAGE — extends style.css design system
   ============================================================ */

.wl-hero { padding: 90px 0 60px; }
.wl-hero .hero-content { max-width: 720px; }

.wl-block { padding-top: 20px; }

.wl-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
}
.wl-panel h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 14px;
}
.wl-panel .lede { color: var(--muted); max-width: 100%; margin-bottom: 26px; font-size: 16px; }

.wl-stepnum {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 18px;
}

.wl-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.wl-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.wl-identity .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.wl-identity .v { font-family: var(--disp); font-weight: 600; font-size: 18px; }
.wl-switch {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
}
.wl-switch:hover { color: var(--red); }

.wl-field {
  display: block;
  margin-bottom: 22px;
}
.wl-field span {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.wl-field input[type="text"],
.wl-field input[type="number"],
.wl-field textarea,
.wl-field select {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  resize: vertical;
  transition: border-color 0.15s;
}
.wl-field input[type="text"]:focus,
.wl-field input[type="number"]:focus,
.wl-field textarea:focus,
.wl-field select:focus {
  outline: none;
  border-color: var(--red);
}

.wl-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--muted);
}
.wl-check input { margin-top: 4px; }
.wl-check a { color: var(--text); text-decoration: underline; }
.wl-check a:hover { color: var(--red); }

#wl-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.wl-panel .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }

#step-error .lede { color: var(--red); }
