/* landing.css — Landing page signup form styles.
   Does NOT own global layout. */

.signup-form {
  display: flex;
  gap: 0;
  margin: 2rem auto 0;
  max-width: 440px;
  border-radius: 4px;
  overflow: hidden;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  background: rgba(255, 255, 255, 0.05);
  color: #e8e8e8;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  outline: none;
  border-radius: 4px 0 0 4px;
  min-width: 0;
}

.signup-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.signup-form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.signup-form button {
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  color: #0a0a0f;
  border: 1px solid #ffffff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.signup-form button:hover:not(:disabled) {
  opacity: 0.85;
}

.signup-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.signup-msg {
  margin-top: 0.75rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  min-height: 1.2em;
}

.newsletter { margin: 0 auto 2rem; max-width: 720px; text-align: center; padding: 1.5rem 1rem 0; }
.newsletter .signup-form { margin-top: 1rem; }
.newsletter-pitch { font-family: 'IBM Plex Mono', monospace; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.05em; }