/* css/components/signup-gate.css */
.gate-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}
.gate-modal {
  background: #111;
  padding: 40px;
  border-radius: 16px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid #333;
  text-align: center;
  color: #fff;
  font-family: inherit;
}
.gate-eyebrow {
  font-family: monospace;
  color: #3b82f6;
  margin-bottom: 16px;
  font-size: 14px;
}
.gate-headline {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.gate-accent { color: #3b82f6; }
.gate-subtext {
  color: #9ca3af;
  margin-bottom: 32px;
  font-size: 15px;
}
#gate-email-input, #gate-code-input {
  width: 100%;
  padding: 14px;
  background: #222;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 16px;
  font-size: 16px;
}
.gate-btn {
  width: 100%;
  padding: 14px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}
.gate-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.gate-trust {
  margin-top: 16px;
  font-size: 12px;
  color: #6b7280;
}
.gate-error { color: #ef4444; margin-top: 12px; font-size: 14px; }
.gate-links { margin-top: 16px; font-size: 14px; }
.gate-links a { color: #3b82f6; text-decoration: none; }
body.gate-active { overflow: hidden; }
body.gate-active > *:not(.gate-overlay) {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}
.gate-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  justify-content: center;
}
.gate-chips label {
  background: #222;
  border: 1px solid #444;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}
.gate-chips input:checked + label {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}
.gate-chips input { display: none; }
